DynamicArray.moveAt

Move element at index to return.

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

Meta