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