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