Searched defs:ListHashSetNodeHashFunctions (Results 1 – 1 of 1) sorted by relevance
240 …e<typename ValueArg, size_t inlineCapacity, typename HashArg> struct ListHashSetNodeHashFunctions { struct241 typedef ListHashSetNode<ValueArg, inlineCapacity> Node;243 static unsigned hash(Node* const& key) { return HashArg::hash(key->m_value); } in hash()244 …tatic bool equal(Node* const& a, Node* const& b) { return HashArg::equal(a->m_value, b->m_value); } in equal()245 static const bool safeToCompareToEmptyOrDeleted = false;