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