ListTools
Reverse
reverse the order of a list
Calling Sequence
Parameters
Description
Examples
Reverse(L)
L
-
list
The Reverse(L) function reverses the order of the elements in list L.
Note: Within a procedure, it is likely that using negative indices is more efficient than creating a new list with elements that are reversed. Therefore, procedure Reverse should only be used for modifying lists that need to be returned in reverse order.
with⁡ListTools:
L≔1,2,3,4,5,6,7,8,9,10
L7
7
L−7
4
R≔Reverse⁡L
R≔10,9,8,7,6,5,4,3,2,1
R7
See Also
type[list]
Download Help Document