How many elements the array can contain without reallocating.
auto v = Array!int(4); assert(v.capacity == 4);
See Implementation