Crate ordered_hash_map
source ·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
- An Ordered Map implementation
- An Ordered Set implementation
Structs
- A hash map which preserves the order of insertion.
- A hash set which preserves the order of insertion.