Trait net_ensembles::traits::AdjList[][src]

pub trait AdjList<Edge> {
    fn edges(&self) -> &[Edge];
}
Expand description

Get the adjacency list of a AdjContainer

Required methods

Intended for all AdjContainer, which store all their edges in a continouse slice/vector. This will return a reference to the edge slice, which you can use to iterate or do other stuff

Implementors