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