(self, arr, indices, axis)
| 3058 | return tnp.repeat(a, repeats, axis) |
| 3059 | |
| 3060 | def take_along_axis(self, arr, indices, axis): |
| 3061 | return tnp.take_along_axis(arr, indices, axis) |
| 3062 | |
| 3063 | def concatenate(self, arrays, axis=0): |
| 3064 | return tnp.concatenate(arrays, axis) |
nothing calls this directly
no test coverage detected