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