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