klyn.collections.ArrayList.ArrayList
constructor
public ArrayList(source as Set<T>):
Description

Creates an ArrayList from a set.

Parameters
ParameterDescription
sourceThe set to copy elements from.
Example
import klyn.collections

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