composable-indexes 0.9.0

In-memory collections with composable indexes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Immutable persistent index implementations using the `imbl` library.
//! These indexes provide persistent data structures that allow for efficient
//! structural sharing and immutability.

mod btree;
pub use btree::BTree;

mod hashtable;
pub use hashtable::HashTable;

mod grouped;
pub use grouped::Grouped;

mod keys;
pub use keys::Keys;