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