klyn.collections.ArrayListSync.ArrayListSync
constructor
public ArrayListSync(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 = ArrayListSync<Int>(source) ```