zipAll<B> method
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);