Reverse
Reverse(list)reverse the elements of the
list.
Examples
>> Reverse({1, 2, 3}){3,2,1}
>> Reverse(x(a,b,c))x(c,b,a)Implementation status
- ✅ - full supported
Reverse(list)reverse the elements of the
list.
>> Reverse({1, 2, 3}){3,2,1}
>> Reverse(x(a,b,c))x(c,b,a)