Return the indices values of index in the specified range. The meaning of the start, stop and step arguments is the same as in :meth:`Table.read_sorted`.
(
self,
start: int | None = None,
stop: int | None = None,
step: int | None = None,
)
| 2039 | return self.read_sorted_indices("sorted", start, stop, step) |
| 2040 | |
| 2041 | def read_indices( |
| 2042 | self, |
| 2043 | start: int | None = None, |
| 2044 | stop: int | None = None, |
| 2045 | step: int | None = None, |
| 2046 | ) -> np.ndarray: |
| 2047 | """Return the indices values of index in the specified range. |
| 2048 | |
| 2049 | The meaning of the start, stop and step arguments is the same as in |
| 2050 | :meth:`Table.read_sorted`. |
| 2051 | |
| 2052 | """ |
| 2053 | return self.read_sorted_indices("indices", start, stop, step) |
| 2054 | |
| 2055 | def _process_range( |
| 2056 | self, start: int | None, stop: int | None, step: int | None |