sortn

Synopsis

@ sortn(@array)

Sorts the specified array in numerical order as long values.

Parameters

@array - the array to sort

Returns

A reference to the sorted @array.

Side Effects / Notes

Examples

@array = @(3, 9, 8, 7, 5); @sorted = sortn(@array); println(@sorted);

@(3, 5, 7, 8, 9)

See Also