vEB
A WIP Rust implementation of a van Emde Boas tree.
NOTE: This is an alpha version and is not ready for production use.
TODO:
- Insert
- Contains
- Delete one
- Delete all
- Find next
- Find prev
- Size
- Iteration + exact size iteration + fused, double ended iterator
- Extend from iterator
- Drain / drain filter / retain / take
- Default / Debug
- First / last (with pop)
- Append
- Fuzzing
- Generic over T
- Clone
- Eq
- Some
Fromimpls (e.g.&[usize]) - O(n) space
- More tests
- Detailed comments & docs
- Arena-based allocation