Array.appendRange

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

struct Array
void
appendRange
(
R
)
(
in auto ref R other
)
if (
!is(Unqual!R : Array) &&
isInputRange!R
&&
(
is(ElementType!R : Variant) ||
Variant.compatible!(ElementType!R)
)
)

Meta