Trait SimdPartialOrd

pub trait SimdPartialOrd: SimdPartialEq

Parallel PartialOrd.

Required Methods

fn simd_lt(self, other: Self) -> Self::Mask

Test if each element is less than the corresponding element in other.

fn simd_le(self, other: Self) -> Self::Mask

Test if each element is less than or equal to the corresponding element in other.

fn simd_gt(self, other: Self) -> Self::Mask

Test if each element is greater than the corresponding element in other.

fn simd_ge(self, other: Self) -> Self::Mask

Test if each element is greater than or equal to the corresponding element in other.

Implementors