(self, dataset, indices, **kwargs)
| 323 | return dataset.head(num_rows, **kwargs) |
| 324 | |
| 325 | def take(self, dataset, indices, **kwargs): |
| 326 | self._patch_kwargs(kwargs) |
| 327 | return dataset.take(indices, **kwargs) |
| 328 | |
| 329 | def count_rows(self, dataset, **kwargs): |
| 330 | self._patch_kwargs(kwargs) |
no test coverage detected