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§

ordered_map
An Ordered Map implementation
ordered_set
An Ordered Set implementation

Structs§

OrderedHashMap
A hash map which preserves the order of insertion.
OrderedHashSet
A hash set which preserves the order of insertion.