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