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