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