(self, axis=-1, kind=None, order=None)
| 404 | return _funcs.reshape(self, shape, order=order) |
| 405 | |
| 406 | def sort(self, axis=-1, kind=None, order=None): |
| 407 | # ndarray.sort works in-place |
| 408 | _funcs.copyto(self, _funcs.sort(self, axis, kind, order)) |
| 409 | |
| 410 | def item(self, *args): |
| 411 | # Mimic NumPy's implementation with three special cases (no arguments, |
no outgoing calls