DynamicArray.moveAt

Move element at index to return.

struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
@safe pragma(inline) @trusted
@"complexity", "O(length)"
T
moveAt
()
(
size_t index
)
if (
!is(Unqual!T == bool) &&
(
is(CapacityType == ulong) ||
is(CapacityType == uint)
)
)

Meta