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