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