Searched defs:ListHashSetNodeHashFunctions (Results 1 – 1 of 1) sorted by relevance
223 template<typename ValueArg, typename HashArg> struct ListHashSetNodeHashFunctions { struct224 typedef ListHashSetNode<ValueArg> Node;226 static unsigned hash(Node* const& key) { return HashArg::hash(key->m_value); } in hash()227 …tatic bool equal(Node* const& a, Node* const& b) { return HashArg::equal(a->m_value, b->m_value); } in equal()228 static const bool safeToCompareToEmptyOrDeleted = false;