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