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