Reverse

Description

Reverses the order of items in a list.

Type

LIST

Arguments

Type

Meaning

1

LIST

a list of values

Evaluation

Returns a list with the same values as the input list, in reverse order.

Comments

 

 
Reverse({ 1.0, {res1, 10}, "hello", 0.0, "bob"})
 
{ "bob", 0.0, "hello", {res1, 10}, 1.0}