std::hash<std::coroutine_handle>
来自 cppreference.cn
                    
                                        
                    
                    
                                                            
                    | 定义于头文件  <coroutine> | ||
| template< class Promise > struct hash<std::coroutine_handle<Promise>>; | (C++20 起) | |
std::hash 对 std::coroutine_handle 的模板特化允许用户获取 std::coroutine_handle<P> 类型对象的哈希值。
特化的 operator() 是 noexcept 的。
[编辑] 示例
| 本节不完整 原因:无示例 | 
[编辑] 参阅
| (C++11) | 哈希函数对象 (类模板) | 


