DynamicArray.frontPop

Move element at front.

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

Meta