Crate ordermap [] [src]

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.

Reexports

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

Modules

map

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

set

A hash set implemented using OrderMap

Macros

ordermap

Create an OrderMap from a list of key-value pairs

orderset

Create an OrderSet from a list of values

Traits

Equivalent

Key equivalence trait.