Expand description
This crate offers an ordered hash map and its corresponding set. These structures have the performance characteristics of a HashMap/Set for random access but where insertion order is preserved and accessible. Both expose an API similar to the std collections but all iterators operate in insertion order.
Modules§
- ordered_
map - An Ordered Map implementation
- ordered_
set - An Ordered Set implementation
Structs§
- Ordered
Hash Map - A hash map which preserves the order of insertion.
- Ordered
Hash Set - A hash set which preserves the order of insertion.