Experimental hash table implementation in just Rust (stable, no unsafe code).

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

This implementation corresponds to their "compact hash map" idea as it is now, and has consistent order.

Please read the API documentation here__

__ https://docs.rs/ordermap/

|buildstatus| |crates|_

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

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

Using robin hood hashing just like Rust's libstd HashMap.

Performance:

Interesting Features:

Where to go from here?

Recent Changes