Searched defs:CustomIntHash (Results 1 – 2 of 2) sorted by relevance
383 struct CustomIntHash { in TEST() struct384 size_t operator()(int x) const { return x; } in TEST()
89 struct CustomIntHash { struct90 size_t operator()(int elem) const { return std::hash<int>()(elem) + 1; } in operator ()()