wwa-coro 0.0.1
Yet Another C++20 Coroutine Library
|
Eager coroutine. More...
#include <eager_task.h>
Classes | |
struct | promise_type |
The promise type for the eager_task coroutine. More... | |
Eager coroutine.
This class represents an eager coroutine, which starts execution immediately upon creation and does not suspend upon completion. From the caller's perspective, it runs synchoronously; the control is returned to the caller only after the coroutine finishes.
Example:
Definition at line 32 of file eager_task.h.