DynamicArray.insertBack

Insert unmoveable value into the end of the array.

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

Meta