- zipLongest<A, B>(a, b): IterableIterator<[A, B]>
Returns IterableIterator<[A, B]>
- zipLongest<A, B, C>(a, b, c): IterableIterator<[A, B, C]>
Returns IterableIterator<[A, B, C]>
- zipLongest(...args): IterableIterator<any[]>
Returns IterableIterator<any[]>
Aggregates any number of iterables into one. Stops when all of the iterables is empty.