Reversed function
Fully qualified name: Std.Arrays.Reversed
Q#
function Reversed<'T>(array : 'T[]) : 'T[]
Create an array that contains the same elements as an input array but in reversed order.
The type of the array elements.
An array whose elements are to be copied in reversed order.
An array containing the elements array[Length(array) - 1]
.. array[0]
.