DynamicArray.popAt

Pop element at index.

struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
@trusted
@"complexity", "O(length)"
void
popAt
()
(
in size_t index
)
if (
!is(immutable T == immutable bool) &&
(
is(Capacity == ulong) ||
is(Capacity == uint)
)
&&
isAllocator!Allocator
)

Meta