Searched defs:ListHashSetTranslator (Results 1 – 1 of 1) sorted by relevance
345 struct ListHashSetTranslator { struct347 typedef ListHashSetNode<ValueType> Node;348 typedef ListHashSetNodeAllocator<ValueType> NodeAllocator;350 static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); } in hash()351 …atic bool equal(Node* const& a, const ValueType& b) { return HashFunctions::equal(a->m_value, b); } in equal()352 static void translate(Node*& location, const ValueType& key, NodeAllocator* allocator) in translate()