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