DynamicArray.opOpAssign

Forwards to insertBack(values).

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

Meta