(self, arr, indices, axis)
| 2624 | return cp.repeat(a, repeats, axis) |
| 2625 | |
| 2626 | def take_along_axis(self, arr, indices, axis): |
| 2627 | return cp.take_along_axis(arr, indices, axis) |
| 2628 | |
| 2629 | def concatenate(self, arrays, axis=0): |
| 2630 | return cp.concatenate(arrays, axis) |
nothing calls this directly
no test coverage detected