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