zipIterator(...iterables)

Returns an iterator that will produce an array of values with the value at the same index of this iterator and each given iterable.

On collections

Usage

  • zipIterator(...iterables)

Related

  • zip(...iterables)

    Returns an array of the respective values in this collection and in each collection provided as an argument.

  • mapIterator(callback, thisp?)

    Returns an iterator for the respective return values of a callback for each value from this iteration.