DynamicArray.popBack

Remove last value fromm the end of the array.

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

Meta