Array.appendRange

Concatenate a range or another Array to the end of this one.

  1. void appendRange(R other)
    struct Array
    @nogc nothrow
    void
    appendRange
    (
    R
    )
    (
    in auto ref R other
    )
    if (
    !is(Unqual!R : Array) &&
    isInputRange!R
    &&
    (
    is(ElementType!R : Variant) ||
    Variant.compatible!(ElementType!R)
    )
    )
  2. void appendArray(Array other)

Meta