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