rxgraph 0.1.0

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

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