The OpenD Programming Language

Zip.opIndexAssign

Assigns to the nth element in the composite range. Defined if all ranges offer random access.

struct Zip(Ranges...)
static if(allSatisfy!(isRandomAccessRange, R))
static if(allSatisfy!(hasAssignableElements, R))
void
opIndexAssign
(
ElementType v
,
size_t n
)
if (
Ranges.length &&
)

Meta