DynamicArray.opOpAssign

Forwards to insertBack(values).

  1. void opOpAssign(T value)
    struct DynamicArray(T, Allocator = Mallocator, Capacity = size_t)
    void
    opOpAssign
    (
    string op
    )
    ()
    if (
    op == "~"
    )
    if (
    !is(immutable T == immutable bool) &&
    (
    is(Capacity == ulong) ||
    is(Capacity == uint)
    )
    &&
    isAllocator!Allocator
    )
  2. void opOpAssign(U[] values)
  3. void opOpAssign(R values)
  4. void opOpAssign(typeof(this) values)

Meta