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