indexed-vector 0.1.0

A Rust library that implements vector container that can be indexed with specified function.
Documentation
1
2
3
4
5
6
7
8
9
#![doc = include_str!("../README.md")]

mod base;
mod btree;
mod hashmap;

pub use base::IndexedVector;
pub use btree::BTreeIndexedVector;
pub use hashmap::HashIndexedVector;