Trait simdop::HAdd [−] [src]

pub trait HAdd<M: Multi> {
    fn hadd(&self, a: M, b: M) -> M;
}
[]

The HAdd trait is used to specify horizontal addition functionality.

Required Methods

fn hadd(&self, a: M, b: M) -> M[]

Horizontally adds adjacent pairs of elements in a and b.

Implementors