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