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