martinus / robin-hood-hashing

Fast & memory efficient hashtable based on robin hood hashing for C++11/14/17/20
https://gitter.im/martinus/robin-hood-hashing
MIT License
1.5k stars 143 forks source link

Support unordered_set #58

Closed martinus closed 4 years ago

martinus commented 4 years ago

Based on the pair-with-void idea from @amosbird in https://github.com/martinus/robin-hood-hashing/pull/55, This PR now fully implements unordered_flat_set and unordered_node_set, with c++11 support. Yay!

Solves #7