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