Trait simdop::Min
[−]
[src]
pub trait Min<M: Multi> { fn min(&self, a: M, b: M) -> M; }
The Min
trait is used to specify minimum comparison functionality.
Required Methods
fn min(&self, a: M, b: M) -> M
Compares elements in a
and b
, and finds the minimum values.