klyn.collections.LinkedListSync.LinkedListSync
constructor
public LinkedListSync(list as IList<T>):
Description

Creates a synchronized list from a read-only list.

Parameters
ParameterDescription
listThe list to copy elements from.
Example
import klyn.collections

source as IList<Int> = i:[1, 2, 3]
copy = LinkedListSync<Int>(source)