hashvec 0.1.0

A HashMap/Vector hybrid: efficient, ordered key-value data storage.
Documentation

ordered-map

An OrderedMap is a hash map / dictionary whose key-value pairs are stored (and can be iterated over) in a fixed order, by default the order in which they were inserted into the map. It's essentially a vector whose values can be inserted/retrieved with keys.