| 235 | : finished_(finished), ready_for_next_(ready_for_next), yield_value_() {} |
| 236 | |
| 237 | bool HasValue() const { return yield_value_.has_value(); } |
| 238 | bool Finished() const { return finished_; } |
| 239 | bool ReadyForNext() const { return ready_for_next_; } |
| 240 | T Value() const { return *yield_value_; } |
no outgoing calls
no test coverage detected