traitgraph/
lib.rs

1#![warn(missing_docs)]
2//! This crate offers traits for graph datastructures as well as implementations of these traits.
3
4pub use traitsequence;
5
6/// Different implementations of the graph traits.
7pub mod implementation;
8/// Traits and a default implementation for graph indices.
9pub mod index;
10pub mod interface;
11/// Traits and implementations of node- and edge-centric walks.
12pub mod walks;