(has_data, data, state)
| 422 | has_data, data = _get_next_as_optional(iterator, self._strategy) |
| 423 | |
| 424 | def cond(has_data, data, state): |
| 425 | del data, state # Unused. |
| 426 | return has_data |
| 427 | |
| 428 | def loop_body(has_data, data, state): |
| 429 | """Executes `reduce_fn` in a loop till the dataset is empty.""" |
no outgoing calls