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