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