zipWith<R> method
Returns an iterable by performing a function between corresponding elements of a nested iterable.
[1, 2, 3, 4, 5, 6].zipWith((args) => args0 + args1) returns 5, 7, 9.
Implementation
Queue<R> zipWith<R>(R Function(List<E>) zipFunction) {
return h.zipWithIterable(this, zipFunction).toQueue();
}