Trait simba::simd::SimdPartialOrd [−][src]
pub trait SimdPartialOrd: SimdValue { fn simd_gt(self, other: Self) -> Self::SimdBool; fn simd_lt(self, other: Self) -> Self::SimdBool; fn simd_ge(self, other: Self) -> Self::SimdBool; fn simd_le(self, other: Self) -> Self::SimdBool; fn simd_eq(self, other: Self) -> Self::SimdBool; fn simd_ne(self, other: Self) -> Self::SimdBool; fn simd_max(self, other: Self) -> Self; fn simd_min(self, other: Self) -> Self; fn simd_clamp(self, min: Self, max: Self) -> Self; fn simd_horizontal_min(self) -> Self::Element; fn simd_horizontal_max(self) -> Self::Element; }
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 corresponding lane of min
and max
.
fn simd_horizontal_min(self) -> Self::Element
[src]
The min value among all lanes of self
.
fn simd_horizontal_max(self) -> Self::Element
[src]
The max value among all lanes of self
.
Implementors
impl SimdPartialOrd for AutoSimd<[f32; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[f32; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f32; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[f32; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f32; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[f32; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f32; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[f32; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f64; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[f64; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f64; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[f64; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[f64; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[f64; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i8; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[i8; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i8; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[i8; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i8; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[i8; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i8; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[i8; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i8; 32]>
[src]
impl SimdPartialOrd for AutoSimd<[i8; 32]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i16; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[i16; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i16; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[i16; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i16; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[i16; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i16; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[i16; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i16; 32]>
[src]
impl SimdPartialOrd for AutoSimd<[i16; 32]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i32; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[i32; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i32; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[i32; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i32; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[i32; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i32; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[i32; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i64; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[i64; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i64; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[i64; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i64; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[i64; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i128; 1]>
[src]
impl SimdPartialOrd for AutoSimd<[i128; 1]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i128; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[i128; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[i128; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[i128; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[isize; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[isize; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[isize; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[isize; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[isize; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[isize; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u8; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[u8; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u8; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[u8; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u8; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[u8; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u8; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[u8; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u8; 32]>
[src]
impl SimdPartialOrd for AutoSimd<[u8; 32]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u16; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[u16; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u16; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[u16; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u16; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[u16; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u16; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[u16; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u16; 32]>
[src]
impl SimdPartialOrd for AutoSimd<[u16; 32]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u32; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[u32; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u32; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[u32; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u32; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[u32; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u32; 16]>
[src]
impl SimdPartialOrd for AutoSimd<[u32; 16]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u64; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[u64; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u64; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[u64; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u64; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[u64; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u128; 1]>
[src]
impl SimdPartialOrd for AutoSimd<[u128; 1]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u128; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[u128; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[u128; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[u128; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[usize; 2]>
[src]
impl SimdPartialOrd for AutoSimd<[usize; 2]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[usize; 4]>
[src]
impl SimdPartialOrd for AutoSimd<[usize; 4]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl SimdPartialOrd for AutoSimd<[usize; 8]>
[src]
impl SimdPartialOrd for AutoSimd<[usize; 8]>
[src]fn simd_gt(self, other: Self) -> Self::SimdBool
[src]
fn simd_lt(self, other: Self) -> Self::SimdBool
[src]
fn simd_ge(self, other: Self) -> Self::SimdBool
[src]
fn simd_le(self, other: Self) -> Self::SimdBool
[src]
fn simd_eq(self, other: Self) -> Self::SimdBool
[src]
fn simd_ne(self, other: Self) -> Self::SimdBool
[src]
fn simd_max(self, other: Self) -> Self
[src]
fn simd_min(self, other: Self) -> Self
[src]
fn simd_clamp(self, min: Self, max: Self) -> Self
[src]
fn simd_horizontal_min(self) -> Self::Element
[src]
fn simd_horizontal_max(self) -> Self::Element
[src]
impl<T: PartialOrd + SimdValue<Element = T, SimdBool = bool>> SimdPartialOrd for T
[src]
impl<T: PartialOrd + SimdValue<Element = T, SimdBool = bool>> SimdPartialOrd for T
[src]