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