(self, a, v, side="left")
| 3043 | return tnp.argsort(a, axis) |
| 3044 | |
| 3045 | def searchsorted(self, a, v, side="left"): |
| 3046 | return tf.searchsorted(a, v, side=side) |
| 3047 | |
| 3048 | def flip(self, a, axis=None): |
| 3049 | return tnp.flip(a, axis) |
nothing calls this directly
no test coverage detected