DynamicArray.insertBack1

Insert value into the end of the array.

TODO rename to insertBack and make this steal scalar calls over insertBack(U)(U[] values...) overload below

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

Meta