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