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