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