DynamicArray.insertBack

Insert the elements values into the end of the array.

  1. void insertBack(T value)
  2. void insertBack(U[] values)
    struct DynamicArray(T, alias Allocator = null, CapacityType = size_t)
    @safe pragma(inline) @trusted
    void
    insertBack
    (
    U
    )
    ()
    if (
    __traits(isCopyable, U)
    )
    if (
    !is(Unqual!T == bool) &&
    (
    is(CapacityType == ulong) ||
    is(CapacityType == uint)
    )
    )
  3. void insertBack(R elements)

Meta