Skip to main content

And

Trait And 

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

Trait for and instruction kinds.

Required Methods§

Source

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

Emit an and instruction.

Implementors§