1
2
3
4
5
6
7
8
//!
//! Contains common graph implementations.
//!

mod adjacency_list;

pub use self::adjacency_list::*;