pub trait NodeCount: GraphBase {
    fn node_count(&self) -> usize;
}
Expand description

A graph with a known node count.

Required Methods

Implementations on Foreign Types

Implementors

impl<N, E, Ty> NodeCount for FastGraphMap<N, E, Ty>where
    N: Copy + PartialEq,