Fills range with value.
Input range type.
Filler type.
Input range.
Filler.
import std.algorithm.comparison : equal; int[6] actual; const int[6] expected = [1, 1, 1, 1, 1, 1]; fill(actual[], 1); assert(equal(actual[], expected[]));
See Implementation
Fills range with value.