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