Trait faster::intrin::PackedSaturatingHadd [] [src]

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

Required Methods

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

Implementors