pub trait Create: Build + Default {
    fn with_capacity(nodes: usize, edges: usize) -> Self;
}
Expand description

A graph that can be created

Required Methods

Implementors