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