terminus-store 0.21.5

a triple store library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Logic for working with layers.
//!
//! Databases in terminus-store are stacks of layers. The first layer
//! in such a stack is a base layer, which contains an intial data
//! set. On top of that, each layer stores additions and removals.
pub mod builder;
pub mod id_map;
mod internal;
mod layer;
mod simple_builder;

pub use id_map::*;
pub use internal::*;
pub use layer::*;
pub use simple_builder::*;