Trait SlicePartialEq

Source
#[doc(hidden)] trait SlicePartialEq<B> {
    // Required method
    fn equal(&self, other: &[B]) -> bool;

    // Provided method
    fn not_equal(&self, other: &[B]) -> bool { ... }
}

Required Methods§

Source

fn equal(&self, other: &[B]) -> bool

Provided Methods§

Source

fn not_equal(&self, other: &[B]) -> bool

Implementors§

Source§

impl<A, B> SlicePartialEq<B> for [A]
where A: BytewiseEq<B>,

Source§

impl<A, B> SlicePartialEq<B> for [A]
where A: PartialEq<B>,