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