Trait snarkvm_wasm::Xor[][src]

pub trait Xor<F, Rhs = Self> where
    F: Field
{ fn xor<CS>(&self, cs: CS, rhs: &Self) -> Result<Self, SynthesisError>
    where
        CS: ConstraintSystem<F>
; }
Expand description

Performs a bitwise XOR operation between self and other in the constraint system.

Required methods

Implementors