Returns the indices that would sort this Array
(self, reverse=False)
| 711 | return self |
| 712 | |
| 713 | def argsort(self, reverse=False): |
| 714 | """ Returns the indices that would sort this Array """ |
| 715 | return self.enumerate.sortBy(lambda e: e[1], reverse=reverse)[:, 0] |
| 716 | |
| 717 | def reverse(self, inplace=False): |
| 718 | """ Reverses this Array. """ |