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

Sorts array elements in-place while keeping the fixed size.

import klyn.collections

values = fs:[3, 1, 2]
values.sort()
print(values)      # fs:[1, 2, 3]