Skip to main content

Or

Trait Or 

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

Trait for or instruction kinds.

Required Methods§

Source

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

Emit an or instruction.

Implementors§