Trait simdop::Shli [−] [src]

pub trait Shli<M: Multi> {
    fn shli(&self, a: M, i: i32) -> M;
}

The Shli trait is used to specify immediate bit-wise left shift functionality.

Required Methods

fn shli(&self, a: M, i: i32) -> M

Shifts all elements in the a left by i bits.

Implementors