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