Constructs a new array with n elements.
Array type.
Array element type.
Allocator.
Array size.
Newly created array.
Precondition: allocator !is null && n <= size_t.max / E.sizeof
int[] i = defaultAllocator.make!(int[])(2); assert(i.length == 2); assert(i[0] == int.init && i[1] == int.init); defaultAllocator.dispose(i);
See Implementation
Constructs a new array with n elements.