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