zipMapWith<V, E> method
Implementation
Iterable<E> zipMapWith<V, E>(
Iterable<V> other, {
required E Function(T a, V b) mapper,
}) sync* {
final it1 = iterator;
final it2 = other.iterator;
while (it1.moveNext() && it2.moveNext()) {
yield mapper(it1.current, it2.current);
}
}