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) ```