Construct an instance of T with length n.
alias A = int[]; const n = 3; const a = makeOfLength!(A)(n); assert(a.length == n);
See Implementation
Construct an instance of T with length n.