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