Expand description
This crate implements array map or vec mac using eytzinger search algorithm. Note that these maps does not support insert/remove operations due to cost.
Structs§
- Eytzinger
Map - A map based on a generic slice-compatible type with Eytzinger binary search.
Traits§
Type Aliases§
- Eytzinger
Array Map - A map based on an array with Eytzinger binary search. See EytzingerMap for details.
- Eytzinger
RefMap - A map based on a slice ref with Eytzinger binary search. See EytzingerMap for details.
- Eytzinger
VecMap - A map based on a Vec with Eytzinger binary search. See EytzingerMap for details.