Searched defs:HashMapTranslator (Results 1 – 1 of 1) sorted by relevance
97 struct HashMapTranslator { struct98 typedef typename ValueType::first_type KeyType;99 typedef typename ValueType::second_type MappedType;101 static unsigned hash(const KeyType& key) { return HashFunctions::hash(key); } in hash()102 static bool equal(const KeyType& a, const KeyType& b) { return HashFunctions::equal(a, b); } in equal()103 static void translate(ValueType& location, const KeyType& key, const MappedType& mapped) in translate()