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