libcoro
1.0
Coroutine support library for C++20
|
◆ operator!()
template<typename T >
awaitable for canceled operation Result of this operator is awaitable. It returns whether future has been canceled
You can invert meaning by applying ! on return value if (co_await !!fut) {... fut wasn't canceled...}
|