zipEach

Zip a range of ranges together by element.

I.e. the first elements of each range will be zipped up in to the first "element", the second elements of each range will be zipped up to the second element, etc, where eaach element is also a range.

The number of elemenets in each sub range of the returned range is equal to the input sub range that has the lest number of elements.

zipEach
(
RoR
)
if (
from!"std.range".isInputRange!(from!"std.range".ElementType!RoR)
)

Parameters

rangeOfRanges
Type: RoR

a range of ranges.

Return Value

Type: auto

A range of ranges

Meta

Since

0.0.1