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