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