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