public native reverse() as Void
Reverses array elements in-place while keeping the fixed size.
import klyn.collections values = fs:[10, 20, 30] values.reverse() print(values) # fs:[30, 20, 10]