Reverses the order of the elements in the specified vector.
Returns:
The same vector object received in the function parameter with the elements in the reversed order. No new vector is created!Note: If the passed vector object is
null
, the function just returnsnull
as well.
See Also:
sortVector(), filterVector()