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>;