Turi Create
4.0
|
#include <core/generics/hopscotch_map.hpp>
A hopscotch hash map. More or less similar interface as boost::unordered_map, not necessarily entirely STL compliant. Really should only be used to store small keys and trivial values.
Key | The key of the map |
Value | The value to store for each key |
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 39 of file hopscotch_map.hpp.