unordered_set::hash_function
Načte uložené hodnoty hash funkce objektu.
Hash hash_function() const;
Poznámky
Členské funkce vrátí objekt hash uložené funkce.
Příklad
// std_tr1__unordered_set__unordered_set_hash_function.cpp
// compile with: /EHsc
#include <unordered_set>
#include <iostream>
typedef std::unordered_set<char> Myset;
int main()
{
Myset c1;
Myset::hasher hfn = c1.hash_function();
std::cout << "hfn('a') == " << hfn('a') << std::endl;
std::cout << "hfn('b') == " << hfn('b') << std::endl;
return (0);
}
Požadavky
Záhlaví: <unordered_set>
Obor názvů: std