Partager via


hash, structure

Le modèle de classe définit sa méthode comme retournant val.hash_code(). La méthode définit une fonction de hachage qui sert à mapper les valeurs de type type_index à une distribution de valeurs d’index.

Syntaxe

template <> struct hash<type_index>
: public unary_function<type_index, size_t>
{ // hashes a typeinfo object
    size_t operator()(type_index val) const;
};

Types spécialisés

<system_error>

template <class T> struct hash;
template <> struct hash<error_code>;
template <> struct hash<error_condition>;

Voir aussi

<typeindex>