The OpenD Programming Language

Zip.opDollar

Returns the length of this range. Defined only if all ranges define length.

import std.range;
struct Zip(Ranges...)
static if(allSatisfy!(hasLength, R))
alias opDollar = length

Meta