scirs2-core 0.4.2

Core utilities and common functionality for SciRS2 (scirs2-core)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Advanced data structures for SciRS2.
//!
//! This module provides specialised data structures not found in the Rust
//! standard library.
//!
//! # Submodules
//!
//! - [`rrb_tree`]: Persistent generic vector backed by a Relaxed Radix-Balanced
//!   tree with structural sharing via `Arc`.

pub mod rrb_tree;

pub use rrb_tree::{PersistentVec, PersistentVecIter};