Trait std::simd::SimdPartialEq

source ·
pub trait SimdPartialEq {
    type Mask;

    fn simd_eq(self, other: Self) -> Self::Mask;
    fn simd_ne(self, other: Self) -> Self::Mask;
}
🔬This is a nightly-only experimental API. (portable_simd #86656)
Expand description

Parallel PartialEq.

Required Associated Types§

🔬This is a nightly-only experimental API. (portable_simd #86656)

The mask type returned by each comparison.

Required Methods§

🔬This is a nightly-only experimental API. (portable_simd #86656)

Test if each lane is equal to the corresponding lane in other.

🔬This is a nightly-only experimental API. (portable_simd #86656)

Test if each lane is equal to the corresponding lane in other.

Implementors§