Searched defs:HashMapTranslatorAdapter (Results 1 – 1 of 1) sorted by relevance
130 struct HashMapTranslatorAdapter { struct131 typedef typename ValueType::first_type KeyType;132 typedef typename ValueType::second_type MappedType;134 static unsigned hash(const T& key) { return Translator::hash(key); } in hash()135 static bool equal(const KeyType& a, const T& b) { return Translator::equal(a, b); } in equal()136 … static void translate(ValueType& location, const T& key, const MappedType&, unsigned hashCode) in translate()