Trait simdop::Shri [−] [src]

pub trait Shri<M: Multi> {
    fn shri(&self, a: M, i32) -> M;
}

The Shri trait is used to specify immediate bit-wise right shift functionality.

Required Methods

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

Shifts all elements in the a right by i bits.

Implementors