pub trait SimdPartialOrd: SimdPartialEq {
// Required methods
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;
}๐ฌThis is a nightly-only experimental API. (
portable_simd)Expand description
Parallel PartialOrd.
Required Methodsยง
sourcefn simd_lt(self, other: Self) -> Self::Mask
๐ฌThis is a nightly-only experimental API. (portable_simd)
fn simd_lt(self, other: Self) -> Self::Mask
portable_simd)Test if each element is less than the corresponding element in other.