Preallocate memory without resizing.
Array!int arr; arr.reserve(100); assert(arr.length == 0); assert(arr.dynamicStorage.length == 100);
See Implementation
Preallocate memory without resizing.