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