DynamicArray.takeFront

Move element at front.

struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
pragma(inline, true)
static if(isMutable!T)
@"complexity", "O(length)"
T
takeFront
()
()
if (
!is(immutable T == immutable bool) &&
(
is(Capacity == ulong) ||
is(Capacity == uint)
)
&&
isAllocator!Allocator
)

Meta