Utility function for obtaining current batch of data.
(self)
| 80 | return None |
| 81 | |
| 82 | def data(self) -> Any: |
| 83 | """Utility function for obtaining current batch of data.""" |
| 84 | return self._data[self._iter] |
| 85 | |
| 86 | def reset(self) -> None: |
| 87 | """Reset the iterator""" |
no outgoing calls
no test coverage detected