Zip2IterableExtension<T1, T2> extension

on

Methods

zip() Iterable<(T1, T2)>
Combines the tuple of iterables to an iterable of tuples. The resulting iterable has the length of the shortest input iterable.
zipPartial() Iterable<(T1?, T2?)>
Combines the tuple of iterables to an iterable of tuples. The resulting iterable has the length of the longest input iterable, missing values are padded with null.
zipPartialWith((T1, T2) padding) Iterable<(T1, T2)>
Combines the tuple of iterables to an iterable of tuples. The resulting iterable has the length of the longest input iterable, missing values are padded with padding.