rxgraph 0.6.1

High-performance graph traversal engine
Documentation
1
2
3
4
5
6
7
8
9
10
mod csr;
#[allow(clippy::module_inception)]
mod graph;
mod repo;

pub use graph::*;
#[cfg(test)]
pub(crate) use repo::Repo;
pub(crate) use repo::{EDGE_DEST_COL, EDGE_SRC_COL, ID_COL};
pub use repo::{EdgeId, GraphId, GraphRepo, NodeId, OwnedGraphId};