MCPcopy Create free account
hub / github.com/Lauriat/funct / sort_

Method sort_

funct/Array.py:707–711  ·  view source on GitHub ↗

Sorts this Array in place.

(self, **kwargs)

Source from the content-addressed store, hash-verified

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 """

Callers 1

testMethod · 0.95

Calls 1

sortMethod · 0.80

Tested by 1

testMethod · 0.76