Crate ordermap

source ·
Expand description

NOTE: the crate ordermap has been renamed with no change in functionality to indexmap; please use it under its new name.

OrderMap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.

OrderSet is a corresponding hash set using the same implementation and with similar properties.

Re-exports

pub use set::OrderSet;
Deprecated
pub use map::OrderMap;
Deprecated

Modules

OrderMap is a hash table where the iteration order of the key-value pairs is independent of the hash values of the keys.
A hash set implemented using OrderMap

Macros

Create an OrderMap from a list of key-value pairs
Create an OrderSet from a list of values

Traits

Key equivalence trait.