hash_multimap::hasher (STL/CLR)
El delegado de hash para una clave.
Microsoft::VisualC::StlClr::UnaryDelegate<GKey, int>
hasher;
Comentarios
El tipo describe un delegado que convierte un valor en un entero.
Ejemplo
// cliext_hash_multimap_hasher.cpp
// compile with: /clr
#include <cliext/hash_map>
typedef cliext::hash_multimap<wchar_t, int> Myhash_multimap;
int main()
{
Myhash_multimap c1;
Myhash_multimap::hasher^ myhash = c1.hash_delegate();
System::Console::WriteLine("hash(L'a') = {0}", myhash(L'a'));
System::Console::WriteLine("hash(L'b') = {0}", myhash(L'b'));
return (0);
}
Requisitos
encabezado: <cliext/hash_map>
Cliext deespacio de nombres: