Initializes all elements of the range assuming that they are uninitialized.
Input range type
Input range.
import std.algorithm.comparison : equal; int[2] actual = void; const int[2] expected = [0, 0]; initializeAll(actual[]); assert(equal(actual[], expected[]));
See Implementation
Initializes all elements of the range assuming that they are uninitialized.