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