Requires Rust-nightly due to use of low-level unstable APIs.
This is a non-persistent bitmapped vector trie with word-size indexing: thus on a 32-bit system the indexing is 32 bits; on 64-bit it is 64 bits.
It essentially behaves as an unbounded (except by the word-size index) sparse vector.
Performance is good for spatially-close accesses but deteriorates for random spatially-sparse accesses. Performance improves significantly if compiled with popcnt and lzcnt instructions. See wiki for more.
The last access path is cached to accelerate the next nearby access.
Multi-path-cache methods are available for accelerating read-only accesses at multiple positions but the current design causes write performance to degrade.
```rust extern crate bitmaptrie; use bitmaptrie::Trie;
fn main() {
let mut trie: Trie
trie.set(123usize, "testing 123".to_owned());
if let Some(value) = trie.get_mut(123) {
*value = "test pass".to_owned();
}
} ```
Dual MIT/Apache 2.0