enumerate<T> function
top-level function matching the behaviour of the Python enumerate function
see https://docs.python.org/3/library/functions.html#enumerate
Implementation
Iterable<Pair<int, T>> enumerate<T>(
Iterable<T> iterable, [
int start = 0,
]) =>
iterable.enumerate(start);