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