std::unstoppable_token
Min standard notice:
Header: <stop_token>
The concept unstoppable_token
# Declarations
template< class Token >
concept unstoppable_token =
std::stoppable_token<Token> &&
requires (const Token tok) {
requires std::bool_constant<(!tok.stop_possible())>::value;
};
(since C++26)