Assign a single chunk of values to an array, assuming the array is made up of fixed size chunks.
int[6] foo; foreach (i; 0 .. foo.length/2) { foo[].assignChunk(i, 1, 2); } assert(foo == [1, 2, 1, 2, 1, 2]);
See Implementation
Assign a single chunk of values to an array, assuming the array is made up of fixed size chunks.