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