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