@brief Check if this coroutine is ready to be resumed
| 251 | |
| 252 | /// @brief Check if this coroutine is ready to be resumed |
| 253 | bool is_ready() const FL_NOEXCEPT { return !mReadyFn || mReadyFn(mReadyArg); } |
| 254 | |
| 255 | private: |
| 256 | CoroutineContext() = default; |