std::unstoppable_token
From cppreference.com
Defined in header <stop_token>
|
||
template< class Token > concept unstoppable_token = |
(since C++26) | |
The concept unstoppable_token<Token>
specifies an additional requirement for a stoppable_token
where the type does not allow stopping. That is, the expression tok.stop_possible() must be usable in constant expression and returns false.