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