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