Index structures for efficient graph queries.
This module provides various index structures:
adjacency
hash
btree
trie
pub use adjacency::ChunkedAdjacency;
pub use btree::BTreeIndex;
pub use hash::HashIndex;