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