Sdílet prostřednictvím


hash – struktura

Šablona třídy definuje svou metodu jako vrácení val.hash_code(). Metoda definuje funkci hash, která se používá k mapování hodnot typu type_index na distribuci hodnot indexu.

Syntaxe

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

Specializované typy

<system_error>

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

Viz také

<typeindex>