blob: 0d16f0c79de401ef68f82c9586cc192667f97106 (
plain)
1
2
3
4
5
6
7
|
//! Traits related to [graph6 format](https://users.cecs.anu.edu.au/~bdm/data/formats.txt) for undirected graphs.
pub use self::graph6_decoder::*;
pub use self::graph6_encoder::*;
mod graph6_decoder;
mod graph6_encoder;
|