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