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