enumerate<E> function

Iterable<IndexedValue<E>> enumerate<E>(
  1. Iterable<E> iterable
)

Returns an Iterable of IndexedValues where the nth value holds the nth element of iterable and its index.

Implementation

Iterable<IndexedValue<E>> enumerate<E>(Iterable<E> iterable) =>
    EnumerateIterable<E>(iterable);