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