Trait simdop::PackUS [−] [src]

pub trait PackUS<M: Multi + Narrow> {
    fn packus(&self, a: M, b: M) -> M;
}

The PackUS trait is used to specify unsigned element narrowing functionality.

Required Methods

fn packus(&self, a: M, b: M) -> M

Narrows elements from a and b using unsigned saturation.

Implementors