Trait simdop::Max [−] [src]

pub trait Max<M: Multi> {
    fn max(&self, a: M, b: M) -> M;
}

The Max trait is used to specify maximum comparison functionality.

Required Methods

fn max(&self, a: M, b: M) -> M

Compares elements in a and b, and finds the maximum values.

Implementors