Overview
>
klyn.collections
>
LinkedList
>
LinkedList
Version 0.1.2
Overview
Index
Tree
Deprecated
klyn.collections.LinkedList.LinkedList
constructor
public LinkedList(tuple as Tuple):
Description
Creates a list from a tuple.
Parameters
tuple The tuple to copy elements from. ```klyn import klyn.collections source = (1, 2, 3) copy = LinkedList<Int>(source) ```