Trait SimdPartialEq

pub trait SimdPartialEq

Parallel PartialEq.

Associated Types

type Mask;

The mask type returned by each comparison.

Required Methods

fn simd_eq(self, other: Self) -> Self::Mask

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

fn simd_ne(self, other: Self) -> Self::Mask

Test if each element is not equal to the corresponding element in other.

Implementors