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