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