klyn.collections.LinkedList.LinkedList
constructor
public LinkedList(collection as Collection<T>):
Description

Creates a list from a collection.

Parameters
ParameterDescription
collectionThe collection to copy elements from.
Example
import klyn.collections

source = HashSet<Int>([1, 2, 3])
copy = LinkedList<Int>(source)