Trait simba::simd::SimdPartialOrd [−][src]
Lane-wise generalization of the standard PartialOrd
for SIMD values.
Required methods
fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
Lanewise greater than >
comparison.
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
Lanewise less than <
comparison.
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
Lanewise greater or equal >=
comparison.
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
Lanewise less or equal <=
comparison.
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
Lanewise equal ==
comparison.
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
Lanewise not equal !=
comparison.
fn simd_max(self, other: Self) -> Self
[src]
Lanewise max value.
fn simd_min(self, other: Self) -> Self
[src]
Lanewise min value.
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
Clamps each lane of self
between the correspondin lane of min
and max
.