DynamicArray.insertBackMove

Move value into the end of the array.

struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
@safe pragma(inline) @trusted
void
insertBackMove
()
(
ref T value
)
if (
!is(Unqual!T == bool) &&
(
is(CapacityType == ulong) ||
is(CapacityType == uint)
)
)

Meta