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