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).

This implementation corresponds to their "compact hash map" idea as it is now.

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

Performance:

Interesting Features:

Where to go from here?

Please read the API documentation here__

__ https://docs.rs/ordermap/0.1/

|crates|_

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

Recent Changes