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

Creates a list from a set.

Parameters
  • source The set to copy elements from. ```klyn import klyn.collections source = {1, 2, 3} copy = LinkedList<Int>(source) ```