zip<A, B> function
top-level function matching the behaviour of the Python zip function
Implementation
Iterable<Pair<A, B>> zip<A, B>(
Iterable<A> iterable1,
Iterable<B> iterable2,
) =>
_zipCore(iterable1, iterable2);
top-level function matching the behaviour of the Python zip function
Iterable<Pair<A, B>> zip<A, B>(
Iterable<A> iterable1,
Iterable<B> iterable2,
) =>
_zipCore(iterable1, iterable2);