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