DynamicArray.clear

Empty.

struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
@nogc
void
clear
()
if (
!is(immutable T == immutable bool) &&
(
is(Capacity == ulong) ||
is(Capacity == uint)
)
&&
isAllocator!Allocator
)

Meta