std::type_index::hash_code
来自cppreference.com
< cpp | types | type index
std::size_t hash_code() const; |
(C++11 起) (C++14 前) |
|
std::size_t hash_code() const noexcept; |
(C++14 起) | |
返回关联的 std::type_info 对象的 hash_code 。等价于直接调用 type_info::hash_code 。
参数
(无)
返回值
关联的 type_info 对象的 hash_code 。
示例
本节未完成 原因:暂无示例 |
参阅
(C++11) |
std::type_index 的散列支持 (类模板特化) |