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