light_indexed_array/lib.rs
1//! # light-indexed-array
2//!
3//! Indexed array for indexed Merkle trees. Stores elements as
4//! a sorted linked list with index, value, and next-index pointers.
5//!
6//! | Type | Description |
7//! |------|-------------|
8//! | [`array::IndexedElement`] | Element with index, BigUint value, and next-index |
9//! | [`array::IndexedArray`] | Array of indexed elements with insert and lookup |
10//! | [`changelog`] | Raw indexed element and changelog entry types |
11//! | [`errors`] | `IndexedArrayError` variants |
12
13pub mod array;
14pub mod changelog;
15pub mod errors;
16
17pub const HIGHEST_ADDRESS_PLUS_ONE: &str =
18 "452312848583266388373324160190187140051835877600158453279131187530910662655";