public native reverse() as Void
Reverses list elements in-place.
import klyn.collections data = [1, 2, 3] data.reverse() print(data) # [3, 2, 1]