klyn.collections.LinkedListSync.LinkedListSync
constructor
public LinkedListSync(source as Set<T>):
Description

Creates a synchronized list from a set.

Parameters
ParameterDescription
sourceThe set to copy elements from.
Example
import klyn.collections

source = {1, 2, 3}
copy = LinkedListSync<Int>(source)