klyn.collections.ArraySync.reverse
method
public native reverse() as Void
Description

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]