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