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