Trait snarkvm_gadgets::traits::bits::xor::Xor[][src]

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

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

Required methods

Implementors