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