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