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