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