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

tuple-hash-fix #102

Closed martinus closed 9 months ago

martinus commented 9 months ago

Usiing has_unique_object_representations is not allowed, as it is also true for std::string_view. So I've now switched to std::is_integral_type.

Also, changed the implementation to be very similar to what Abseil is doing. Benchmarks have shown that this is much faster.