Skip to main content

List.Reverse

Inversează numărul valorilor din listă.

Syntax

List.Reverse(
list as list
) as list

Remarks

Returnează o listă cu valorile din lista list în ordine inversă.

Examples

Example #1

Creaţi o listă de la {1..10} în ordine inversă.

List.Reverse({1..10})

Result:

{10, 9, 8, 7, 6, 5, 4, 3, 2, 1}

Category

List.Transformation functions