Void reverse(var [a] xs)
Arguments
xs: The array to reverse
Usage
This function reverses an array in-place.
xs = [1,2,3,4,5];
reverse(xs);
// xs = [5,4,3,2,1]
xs: The array to reverseThis function reverses an array in-place.
xs = [1,2,3,4,5];
reverse(xs);
// xs = [5,4,3,2,1]