pub trait Simd8PartialEq: Copy {
    fn eq(self, other: Self) -> u8;
    fn neq(self, other: Self) -> u8;
}
Available on crate feature compute_comparison only.
Expand description

Trait implemented by implementors of Simd8Lanes whose Simd8 implements PartialEq.

Required Methods

Equal

Not equal

Implementations on Foreign Types

Implementors