public native reverse() as Void
Reverses array elements in-place.
The array keeps the same fixed size; only element order changes.
import klyn.collections values = f:[10, 20, 30] values.reverse() print(values) # f:[30, 20, 10]