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