Variable accumulation

Increases the strength by continuious accumulation, i.e. linearly.

float delegate(float, float) accumulation = delegate (float x, float last = 0.0F) pure nothrow @nogc @safe => x + last;