Trait core::simd::SimdPartialEq
source · [−]pub trait SimdPartialEq {
type Mask;
fn simd_eq(self, other: Self) -> Self::Mask;
fn simd_ne(self, other: Self) -> Self::Mask;
}
Expand description
Parallel PartialEq
.
Required Associated Types
Required Methods
Test if each lane is equal to the corresponding lane in other
.