共用方式為


hash 結構

類別範本會將其方法定義為傳 val.hash_code()回 。 方法會定義雜湊函式,用來將 type_index 類型的值對應到索引值的分佈。

語法

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

特製化類型

<system_error>

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

另請參閱

<typeindex>