Sorts this Array in place.
(self, **kwargs)
| 705 | return Array(sorted(self, **kwargs)) |
| 706 | |
| 707 | def sort_(self, **kwargs): |
| 708 | """ Sorts this Array in place. """ |
| 709 | warn() |
| 710 | super().sort(**kwargs) |
| 711 | return self |
| 712 | |
| 713 | def argsort(self, reverse=False): |
| 714 | """ Returns the indices that would sort this Array """ |