Basic constructor macro for bitsize-64 structures.
(make-bitsize-64 )
This is the usual way to construct bitsize-64 structures. It simply conses together a structure with the specified fields.
This macro generates a new bitsize-64 structure from scratch. See also change-bitsize-64, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-bitsize-64 (&rest args) (std::make-aggregate 'bitsize-64 args 'nil 'make-bitsize-64 nil))
Function:
(defun bitsize-64 nil (declare (xargs :guard t)) (let ((__function__ 'bitsize-64)) (declare (ignorable __function__)) (cons :|64| (list))))