(self, arr, indices, axis)
| 1259 | return np.repeat(a, repeats, axis) |
| 1260 | |
| 1261 | def take_along_axis(self, arr, indices, axis): |
| 1262 | return np.take_along_axis(arr, indices, axis) |
| 1263 | |
| 1264 | def concatenate(self, arrays, axis=0): |
| 1265 | return np.concatenate(arrays, axis) |
nothing calls this directly
no test coverage detected