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