nodedb-array 0.2.1

Shared ND sparse array engine (coordinate-tuple indexed, tile-based) for NodeDB Origin and Lite
Documentation
// SPDX-License-Identifier: Apache-2.0

pub mod ack;
pub mod apply;
pub mod gc;
pub mod hlc;
pub mod op;
pub mod op_codec;
pub mod op_log;
pub mod replica_id;
pub mod schema_crdt;
pub mod snapshot;

pub use ack::AckVector;
pub use apply::{ApplyEngine, ApplyOutcome, ApplyRejection, apply_op};
pub use gc::{GcReport, collapse_below};
pub use hlc::{Hlc, HlcGenerator};
pub use op::{ArrayOp, ArrayOpHeader, ArrayOpKind};
pub use op_log::OpLog;
pub use replica_id::ReplicaId;
pub use schema_crdt::SchemaDoc;
pub use snapshot::{
    CoordRange, SnapshotChunk, SnapshotHeader, SnapshotSink, TileSnapshot, assemble_chunks,
    decode_snapshot, encode_snapshot, split_into_chunks,
};