Read rows specified in `coords`.
(self, coords: Sequence[int])
| 845 | return outlistarr |
| 846 | |
| 847 | def _read_coordinates(self, coords: Sequence[int]) -> list[list]: |
| 848 | """Read rows specified in `coords`.""" |
| 849 | rows = [] |
| 850 | for coord in coords: |
| 851 | rows.append(self.read(idx2long(coord), idx2long(coord) + 1, 1)[0]) |
| 852 | return rows |
| 853 | |
| 854 | def _g_copy_with_stats( |
| 855 | self, |
no test coverage detected