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

Creates a synchronized list from a read-only list.

Parameters
  • list The list to copy elements from. ```klyn import klyn.collections source as IList<Int> = i:[1, 2, 3] copy = ArrayListSync<Int>(source) ```