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