trait SpecArrayEq<Other, const N: usize>: Sized {
    // Required methods
    fn spec_eq(a: &[Self; N], b: &[Other; N]) -> bool;
    fn spec_ne(a: &[Self; N], b: &[Other; N]) -> bool;
}

Required Methods§

Implementors§

source§

impl<T: BytewiseEq<U>, U, const N: usize> SpecArrayEq<U, N> for T

source§

impl<T: PartialEq<Other>, Other, const N: usize> SpecArrayEq<Other, N> for T