Enumerated function
Fully qualified name: Std.Arrays.Enumerated
function Enumerated<'TElement>(array : 'TElement[]) : (Int, 'TElement)[]
Given an array, returns a new array containing elements of the original array along with the indices of each element.
The type of elements of the array.
An array whose elements are to be enumerated.
A new array containing elements of the original array along with their indices.
The following for
loops are equivalent:
for (idx in IndexRange(array)) {
let element = array[idx];
...
}
for ((idx, element) in Enumerated(array)) { ... }