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, Allocator = Mallocator, Capacity = size_t)
    scope @trusted
    void
    insertBack
    (
    U
    )
    ()
    if (
    __traits(isCopyable, U)
    )
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )
  3. void insertBack(R elements)

Meta