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