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