Turi Create
4.0
|
#include <core/generics/hopscotch_set.hpp>
A hopscotch hash set. More or less similar interface as boost::unordered_set, not necessarily entirely STL compliant. Really should only be used to store small keys and trivial values.
Key | The key of the set |
Hash | The hash functor type. Defaults to std::hash<Key> if C++11 is available. Otherwise defaults to boost::hash<Key> |
KeyEqual | The functor used to identify object equality. Defaults to std::equal_to<Key> |
Definition at line 37 of file hopscotch_set.hpp.