indexmap

|buildstatus| |crates|_ |docs|_ |rustc|_

.. |crates| image:: https://img.shields.io/crates/v/indexmap.svg .. _crates: https://crates.io/crates/indexmap

.. |buildstatus| image:: https://travis-ci.org/bluss/indexmap.svg .. _buildstatus: https://travis-ci.org/bluss/indexmap

.. |docs| image:: https://docs.rs/indexmap/badge.svg .. _docs: https://docs.rs/indexmap

.. |rustc| image:: https://img.shields.io/badge/rust-1.18%2B-orange.svg .. _rustc: https://img.shields.io/badge/rust-1.18%2B-orange.svg

A safe, pure-Rust hash table which preserves (in a limited sense) insertion order.

This crate implements compact map and set data-structures, where the iteration order of the keys is independent from their hash or value. It preserves insertion order (except after removals), and it allows lookup of entries by either hash table key or numerical index.

Note: this crate was originally released under the name ordermap, but it was renamed to indexmap to better reflect its features.

Background

This was inspired by Python 3.6's new dict implementation (which remembers the insertion order and is fast to iterate, and is compact in memory).

Some of those features were translated to Rust, and some were not. The result was indexmap, a hash table that has following properties:

Does not implement (Yet)

Performance

IndexMap derives a couple of performance facts directly from how it is constructed, which is roughly:

Two vectors, the first, sparse, with hashes and key-value indices, and the second, dense, the key-value pairs.

.. _PR45282: https://github.com/rust-lang/rust/pull/45282

Recent Changes

__ https://github.com/bluss/ordermap/pull/10

__ https://github.com/bluss/ordermap/pull/3