klyn.collections.ArrayListSync.ArrayListSync
constructor
public ArrayListSync(tuple as Tuple):
Description

Creates a synchronized list from a tuple.

Parameters
ParameterDescription
tupleThe tuple to copy elements from.
Example
import klyn.collections

source = (1, 2, 3)
copy = ArrayListSync<Int>(source)