Bcc

Trait Bcc 

Source
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>

Source§

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

Source§

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

Implementors§