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