infinite-db 0.1.5

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
//! Indexing primitives used to map multi-dimensional data into ordered keys.

/// N-dimensional Hilbert encoding and decoding.
pub mod hilbert;
/// Scalar encoders preserving ordinal ordering.
pub mod ordinal;
/// Hybrid logical clock utilities for temporal dimensions.
pub mod temporal;
/// Composite key builder for heterogeneous dimensions.
pub mod composite;
/// Hilbert key derivation for spatial points (single source of truth).
pub mod key;

pub use key::{hilbert_key_for, hilbert_key_standard};