deduction guides for std::stop_callback
From cppreference.net
< cpp | thread | stop callback
C++
Concurrency support library
|
|
std::stop_callback
Member functions | ||||
Deduction guides |
Defined in header <stop_token>
|
||
template< class Callback > stop_callback( std::stop_token, Callback ) -> stop_callback<Callback>; |
(since C++20) | |
One deduction guide is provided for std::stop_callback to permit deduction from argument of invocable types.
Example
This section is incomplete Reason: no example |