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