martinus / unordered_dense

A fast & densely stored hashmap and hashset based on robin-hood backward shift deletion
MIT License
898 stars 72 forks source link

fixes is_avalanching default, adds documentation for hashing #28

Closed martinus closed 2 years ago

martinus commented 2 years ago

Removes is_avalanching from default implementation that uses std::hash. That would inherit the is_avalanching when the user creates a specialization.

Adds an example test with custom hashes.

Describes hashing in the README.md in a special section, with examples