@brief Check if coroutine has completed (function returned)
| 220 | |
| 221 | /// @brief Check if coroutine has completed (function returned) |
| 222 | bool is_completed() const FL_NOEXCEPT { return mCompleted; } |
| 223 | |
| 224 | /// @brief Request the coroutine to stop |
| 225 | void set_should_stop(bool val) FL_NOEXCEPT { mShouldStop = val; } |
no outgoing calls
no test coverage detected