zipPartial method

Iterable<List<E?>> zipPartial()

Combines the first, second, third, ... elements of each Iterable into a new list. The resulting iterable has the length of the longest input iterable, missing values are padded with null.

Implementation

Iterable<List<E?>> zipPartial() => cast<Iterable<E?>>().zipPartialWith(null);