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

Creates a synchronized list from a tuple.

Parameters
  • tuple The tuple to copy elements from. ```klyn import klyn.collections source = (1, 2, 3) copy = LinkedListSync<Int>(source) ```