zipora 3.1.7

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
1
2
3
4
5
6
7
8
9
10
mod state;
mod trie;
mod map;
mod iterators;
#[cfg(test)]
mod tests;

pub use trie::{DoubleArrayTrie, DoubleArrayTrieCursor, RangeIter};
pub use map::{DoubleArrayTrieMap, DoubleArrayTrieMapCursor, MapRangeIter, MapValue};
pub(crate) use state::{DaState, NInfo, FREE_BIT, NIL_STATE, MAX_STATE, NINFO_NONE, label_to_ninfo};