pub trait DedupPredicate<T> {
    // Required method
    fn dedup_pair(&mut self, a: &T, b: &T) -> bool;
}

Required Methods§

source

fn dedup_pair(&mut self, a: &T, b: &T) -> bool

Implementors§