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