import std.stdio: writeln;
import std.algorithm: each, equal;
import std.datetime.stopwatch: benchmark;
struct Stride( Type : Elem[], Elem )
pragma( inline ) @property length() const { return range.length / strideCount; }
pragma( inline ) @property empty() const { return currFront > range.length; }
pragma( inline ) @property ref Elem front() { return range[ currFront ]; }
pragma( inline ) void popFront() { currFront += strideCount; }
pragma( inline ) auto stride( Range )( Range r, int a )
return Stride!Range( r, a );
pragma( inline ) auto fill( Range, Value )( Range r, Value v )
enum arraySize = 50 * Mb;
auto a = new Type[arraySize/Type.sizeof];
auto b = new Type[arraySize/Type.sizeof];
auto c = new Type[arraySize/Type.sizeof];
for(auto i=0; i<a.length; i+=strideAmount) {
b[0..$].stride(strideAmount).fill(cast(Type) 0);
c[0..$].stride(strideAmount).each!((ref x) => x = 0);
assert(a.equal(b) && b.equal(c));