Trait Xor

Source
pub trait Xor<T, U> {
    // Required method
    fn xor(&mut self, op1: T, op2: U);
}
Expand description

Trait for xor instruction kinds.

Required Methods§

Source

fn xor(&mut self, op1: T, op2: U)

Emit a xor instruction.

Implementors§