Trait faster::intrin::PackedHadd [] [src]

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

Required Methods

Return a vector containing the interleaved sums of elements in self and other. 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