pub trait Bcc {
    type Output;

    // Required method
    fn bcc(&self) -> Self::Output;
}

Required Associated Types§

Required Methods§

source

fn bcc(&self) -> Self::Output

Return all biconnected components

Implementations on Foreign Types§

source§

impl<N, E, Ix: IndexType> Bcc for UnGraph<N, E, Ix>

§

type Output = Vec<Vec<NodeIndex<Ix>>>

source§

fn bcc(&self) -> Self::Output

Implementors§