pub trait AdjList<Edge> {
    fn edges(&self) -> &[Edge]Notable traits for &[u8]impl Read for &[u8]impl Write for &mut [u8];
}
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