Trait faster::intrin::PackedHsub [] [src]

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

Required Methods

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