terminus-store 0.17.1

a triple store library
Documentation
//! Data structures on which terminus-store is built.
//!
//! This module contains various succinct data structures, as well as
//! the logic to load, parse and store them.
pub mod adjacencylist;
pub mod bitarray;
pub mod bitindex;
pub mod bititer;
pub mod logarray;
//pub mod mapped_dict;
pub mod pfc;
pub mod util;
pub mod vbyte;
pub mod wavelettree;

pub use adjacencylist::*;
pub use bitarray::*;
pub use bitindex::*;
pub use logarray::*;
pub use pfc::*;
pub use wavelettree::*;