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