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