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

Method reverse_

funct/Array.py:725–729  ·  view source on GitHub ↗

Reverses this Array in-place.

(self)

Source from the content-addressed store, hash-verified

723 return Array(reversed(self))
724
725 def reverse_(self):
726 """ Reverses this Array in-place. """
727 warn()
728 super().reverse()
729 return self
730
731 def copy(self):
732 return Array(super().copy())

Callers 1

testMethod · 0.95

Calls 1

reverseMethod · 0.80

Tested by 1

testMethod · 0.76