Reverses the order of elements in a readonly array or tuple L. For fixed-length tuples, it returns a tuple with elements in reverse order. For general arrays, it returns a readonly array of the same element type.
L
The readonly array or tuple type.
A new type with elements reversed.
type R1 = List.Reverse<[1, 2, 3]>; // readonly [3, 2, 1]type R2 = List.Reverse<readonly string[]>; // readonly string[]type R3 = List.Reverse<[]>; // readonly [] Copy
type R1 = List.Reverse<[1, 2, 3]>; // readonly [3, 2, 1]type R2 = List.Reverse<readonly string[]>; // readonly string[]type R3 = List.Reverse<[]>; // readonly []
Reverses the order of elements in a readonly array or tuple
L. For fixed-length tuples, it returns a tuple with elements in reverse order. For general arrays, it returns a readonly array of the same element type.