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