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