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