Home | History | Annotate | Download | only in unord.set.cnstr

Lines Matching refs:hf

67         typedef test_hash<std::hash<T>> HF;
70 typedef std::unordered_set<T, HF, Comp, A> C;
75 assert(c.hash_function() == HF());
87 typedef test_hash<std::hash<T>> HF;
90 typedef std::unordered_set<T, HF, Comp, A> C;
92 HF hf(42);
94 C c(4, hf, a);
96 assert(c.hash_function() == hf);
97 assert(!(c.hash_function() == HF()));