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