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