pub trait Create: Build + Default {
fn with_capacity(nodes: usize, edges: usize) -> Self;
}
Expand description
A graph that can be created
Required Methods
source
pub trait Create: Build + Default {
fn with_capacity(nodes: usize, edges: usize) -> Self;
}
A graph that can be created