public ArrayList(source as Set<T>):
Creates an ArrayList from a set.
source
import klyn.collections source = {1, 2, 3} copy = ArrayList<Int>(source)