Overview
>
klyn.collections
>
LinkedList
>
LinkedList
Version 0.1.2
Overview
Index
Tree
Deprecated
klyn.collections.LinkedList.LinkedList
constructor
public LinkedList(list as IList<T>):
Description
Creates a list from a read-only list.
Parameters
list The list to copy elements from. ```klyn import klyn.collections source as IList<Int> = i:[1, 2, 3] copy = LinkedList<Int>(source) ```