Member of other specializations | ||
bool done() const; | (1) | (since C++20) |
Member of specialization std::coroutine_handle<std::noop_coroutine_promise>
| ||
constexpr bool done() const noexcept; | (2) | (since C++20) |
Checks if a suspended coroutine is suspended at its final suspended point.
true
if the coroutine to which *this
refers is suspended at its final suspend point, or false
if the coroutine is suspended at other suspend points. The behavior is undefined if *this
does not refer to a suspended coroutine.false
.(none).
true
if the coroutine is suspended at its final suspend point, false
if the coroutine is suspended at other suspend points.false
.A no-op coroutine is always considered not suspended at its final suspended point.
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/coroutine/coroutine_handle/done