infinite-db 0.1.3

A spatial-graph database using n-dimensional curves and hyperedges for engineering logic.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core domain types for InfiniteDB.

/// Addressing primitives (`Address`, `SpaceId`, `DimensionVector`).
pub mod address;
/// Block-level storage records and relations.
pub mod block;
/// Branching model and branch registry.
pub mod branch;
/// Query descriptor types.
pub mod query;
/// Schema trait implemented by storable record types.
pub mod schema;
/// Snapshot model and snapshot utilities.
pub mod snapshot;
/// Space registration and configuration.
pub mod space;