Trait faster::intrin::PackedSaturatingHsub [] [src]

pub trait PackedSaturatingHsub {
    fn saturating_hsub(&self, other: Self) -> Self;
}

Required Methods

Return a vector containing the interleaved differences of elements in self and other, using saturating subtraction. The returned vector will begin with the difference of the first two elements in self, and end with the difference of the last two elements in other

Implementors