copyTupleFromToCanDestroy

fun A_Tuple.copyTupleFromToCanDestroy(    start: Int,     end: Int,     canDestroy: Boolean): A_Tuple

Make a tuple that only contains the given range of elements of the given tuple. Subclasses have different strategies for how to accomplish this efficiently.

Return

The subtuple.

Parameters

start

The start of the range to extract.

end

The end of the range to extract.

canDestroy

Whether the original object may be destroyed if mutable.