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

A graph with a known edge count.

Required Methods

Return the number of edges in the graph.

Implementations on Foreign Types

Implementors