public native static operator+(readonly notnull left as LinkedListSync<T>, readonly notnull right as LinkedListSync<T>) as LinkedListSync<T>
Concatenates two LinkedListSync instances into a new LinkedListSync.
import klyn.collections data = ls:[10, 20] + ls:[30, 40] print(data) # ls:[10, 20, 30, 40]
| Parameter | Description |
|---|---|
left | Left synchronized linked list. |
right | Right synchronized linked list. |
A new LinkedListSync containing both operands in order.