Function zipEach

Zip a range of ranges together by element.

auto auto zipEach(RoR) (
  RoR rangeOfRanges
)
if (from.std.range.isInputRange!(from.std.range.ElementType!RoR));

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.

Parameters

NameDescription
rangeOfRanges a range of ranges.

Returns

A range of ranges

Since

0.0.1