DynamicArray.popBackN

Rmove n last values from the end of the array.

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

See Also

Meta