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