Qubes 7.5
Reverses the items of a list.
Syntax
param = list to be reversed
Remarks
When passed a single value rather than a list, this function just returns that value.
Examples
ListReverse(List(1, 2, 3)) = ( 3, 2, 1 )
ListIf(1) = 1
Classification
Ranges