unordered_multimap::hasher
O tipo da função hash.
typedef Hash hasher;
Comentários
O tipo é um sinônimo para o parâmetro Hashdo modelo.
Exemplo
// std_tr1__unordered_map__unordered_multimap_hasher.cpp
// compile with: /EHsc
#include <unordered_map>
#include <iostream>
typedef std::unordered_multimap<char, int> Mymap;
int main()
{
Mymap c1;
Mymap::hasher hfn = c1.hash_function();
std::cout << "hfn('a') == " << hfn('a') << std::endl;
std::cout << "hfn('b') == " << hfn('b') << std::endl;
return (0);
}
Requisitos
unordered_map <deCabeçalho: >
Namespace: std