Constructs a coroutine in its initial state.
| 247 | public: |
| 248 | /// Constructs a coroutine in its initial state. |
| 249 | coroutine() : value_(0) {} |
| 250 | |
| 251 | /// Returns true if the coroutine is the child of a fork. |
| 252 | bool is_child() const { return value_ < 0; } |
nothing calls this directly
no outgoing calls
no test coverage detected