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