DynamicArray.empty

Check if empty.

struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
pragma(inline, true) const @property scope
bool
empty
()
if (
!is(immutable T == immutable bool) &&
(
is(Capacity == ulong) ||
is(Capacity == uint)
)
&&
isAllocator!Allocator
)

Meta