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