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