concatenateWith

fun A_Tuple.concatenateWith(otherTuple: A_Tuple, canDestroy: Boolean): A_Tuple

Concatenate the receiver and the argument otherTuple to form a new tuple. Assume that the two input tuples may be destroyed or recycled if they're mutable.

Return

The concatenation of the two tuples.

Parameters

otherTuple

The tuple to append.

canDestroy

Whether the input tuples can be destroyed or reused.