Crate eytzinger_map

Crate eytzinger_map 

Source
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§

EytzingerMap
A map based on a generic slice-compatible type with Eytzinger binary search.

Traits§

AsMutSlice
AsSlice

Type Aliases§

EytzingerArrayMap
A map based on an array with Eytzinger binary search. See EytzingerMap for details.
EytzingerRefMap
A map based on a slice ref with Eytzinger binary search. See EytzingerMap for details.
EytzingerVecMap
A map based on a Vec with Eytzinger binary search. See EytzingerMap for details.