Skip to main content

scirs2_core/data_structures/
mod.rs

1//! Advanced data structures for SciRS2.
2//!
3//! This module provides specialised data structures not found in the Rust
4//! standard library.
5//!
6//! # Submodules
7//!
8//! - [`rrb_tree`]: Persistent generic vector backed by a Relaxed Radix-Balanced
9//!   tree with structural sharing via `Arc`.
10
11pub mod rrb_tree;
12
13pub use rrb_tree::{PersistentVec, PersistentVecIter};