klyn.collections.LinkedList.LinkedList
constructor
public LinkedList(tuple as Tuple):
Description

Creates a list from a tuple.

Parameters
ParameterDescription
tupleThe tuple to copy elements from.
Example
import klyn.collections

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