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