DynamicArray.reserve

Ensures sufficient capacity to accommodate for minimumCapacity number of elements. If minimumCapacity < capacity, this method does nothing.

struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
@safe pragma(inline) @trusted scope pure nothrow @nogc
void
reserve
if (
!is(Unqual!T == bool) &&
(
is(CapacityType == ulong) ||
is(CapacityType == uint)
)
)

Meta