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