Trait simdop::CmpGt [−] [src]

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

The CmpGt trait is used to specify greater-than comparison funtionality.

Required Methods

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

Compares elements in a and b for greater-than.

Implementors