次の方法で共有


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

参照

関連項目

<typeindex>