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