Trait core::simd::SimdPartialOrd
source · [−]pub trait SimdPartialOrd: SimdPartialEq {
fn simd_lt(self, other: Self) -> Self::Mask;
fn simd_le(self, other: Self) -> Self::Mask;
fn simd_gt(self, other: Self) -> Self::Mask;
fn simd_ge(self, other: Self) -> Self::Mask;
}
Expand description
Parallel PartialOrd
.
Required Methods
Test if each lane is less than the corresponding lane in other
.
Test if each lane is less than or equal to the corresponding lane in other
.
Test if each lane is greater than the corresponding lane in other
.