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