Searched defs:ListHashSetTranslator (Results 1 – 1 of 1) sorted by relevance
362 struct ListHashSetTranslator { struct364 typedef ListHashSetNode<ValueType, inlineCapacity> Node;365 typedef ListHashSetNodeAllocator<ValueType, inlineCapacity> NodeAllocator;367 static unsigned hash(const ValueType& key) { return HashFunctions::hash(key); } in hash()368 …atic bool equal(Node* const& a, const ValueType& b) { return HashFunctions::equal(a->m_value, b); } in equal()369 static void translate(Node*& location, const ValueType& key, NodeAllocator* allocator) in translate()