Overview
>
klyn.collections
>
ArrayList
>
ArrayList
Version 0.1.2
Overview
Index
Tree
Deprecated
klyn.collections.ArrayList.ArrayList
constructor
public ArrayList(tuple as Tuple):
Description
Creates an ArrayList from a tuple.
Parameters
tuple The tuple to copy elements from. ```klyn import klyn.collections source = (1, 2, 3) copy = ArrayList<Int>(source) ```