(self, idx)
| 369 | self.datasets = datasets |
| 370 | |
| 371 | def __getitem__(self, idx): |
| 372 | return tuple(d[idx] for d in self.datasets) |
| 373 | |
| 374 | def __len__(self): |
| 375 | return min(len(d) for d in self.datasets) |
nothing calls this directly
no outgoing calls
no test coverage detected