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