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