zipAll<B> method

RIterator<(A, B)> zipAll<B>(
  1. RIterableOnce<B> that,
  2. A thisElem,
  3. B thatElem
)

Returns an iterator of pairs, padding the shorter side with thisElem or thatElem until both sides are exhausted.

Implementation

RIterator<(A, B)> zipAll<B>(RIterableOnce<B> that, A thisElem, B thatElem) =>
    _ZipAllIterator(this, that, thisElem, thatElem);