std::hash<std::coroutine_handle>
Min standard notice:
Header: <coroutine>
The template specialization of std::hash for std::coroutine_handle allows users to obtain hashes of objects of type std::coroutine_handle
.
# Declarations
template< class Promise >
struct hash<std::coroutine_handle<Promise>>;
(since C++20)
# Example
This section is incompleteReason: no example