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