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