Array.opBinary

Concatenate two arrays into a new one. The originals are left unaffected if there are still other references to them remaining.

  1. Array opBinary(R other)
  2. Array opBinary(Array other)
    struct Array
    @nogc nothrow
    opBinary
    (
    string op
    )
    (
    in auto ref Array other
    )
    if (
    op == "~" ||
    op == "+"
    )
  3. Array opBinaryRight(R other)

Meta