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