klyn.collections.ArrayList.ArrayList
constructor
public ArrayList(tuple as Tuple):
Description

Creates an ArrayList from a tuple.

Parameters
ParameterDescription
tupleThe tuple to copy elements from.
Example
import klyn.collections

source = (1, 2, 3)
copy = ArrayList<Int>(source)