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