Overview
>
klyn.collections
>
LinkedListSync
>
LinkedListSync
Version 0.1.2
Overview
Index
Tree
Deprecated
klyn.collections.LinkedListSync.LinkedListSync
constructor
public LinkedListSync(source as Set<T>):
Description
Creates a synchronized list from a set.
Parameters
source The set to copy elements from. ```klyn import klyn.collections source = {1, 2, 3} copy = LinkedListSync<Int>(source) ```