Trait nalgebra::SimdPartialOrd [−][src]
pub trait SimdPartialOrd: SimdValue { pub fn simd_gt(self, other: Self) -> Self::SimdBool; pub fn simd_lt(self, other: Self) -> Self::SimdBool; pub fn simd_ge(self, other: Self) -> Self::SimdBool; pub fn simd_le(self, other: Self) -> Self::SimdBool; pub fn simd_eq(self, other: Self) -> Self::SimdBool; pub fn simd_ne(self, other: Self) -> Self::SimdBool; pub fn simd_max(self, other: Self) -> Self; pub fn simd_min(self, other: Self) -> Self; pub fn simd_clamp(self, min: Self, max: Self) -> Self; }
Lane-wise generalization of the standard PartialOrd
for SIMD values.
Required methods
pub fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
Lanewise greater than >
comparison.
pub fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
Lanewise less than <
comparison.
pub fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
Lanewise greater or equal >=
comparison.
pub fn simd_le(self, other: Self) -> Self::SimdBool
[src]
Lanewise less or equal <=
comparison.
pub fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
Lanewise equal ==
comparison.
pub fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
Lanewise not equal !=
comparison.
pub fn simd_max(self, other: Self) -> Self
[src]
Lanewise max value.
pub fn simd_min(self, other: Self) -> Self
[src]
Lanewise min value.
pub fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
Clamps each lane of self
between the correspondin lane of min
and max
.
Implementors
impl<T> SimdPartialOrd for T where
T: PartialOrd<T> + SimdValue<SimdBool = bool>,
[src]
impl<T> SimdPartialOrd for T where
T: PartialOrd<T> + SimdValue<SimdBool = bool>,
[src]