Trait simdop::Add
[−]
[src]
pub trait Add<M: Multi> { fn add(&self, a: M, b: M) -> M; }
The Add
trait is used to specify element-wise addition functionality.
Required Methods
fn add(&self, a: M, b: M) -> M
Adds elements in a and b.