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