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