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