Trait reunion::UnionFindTrait[][src]

pub trait UnionFindTrait<N: Eq + Hash + Clone> {
    fn find(&mut self, node: N) -> N;
fn union(&mut self, x: N, y: N);
fn subsets(&mut self) -> Vec<HashSet<N>>; }

Required methods

Implementors