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