klyn.collections.LinkedList.operator+
method
public native static operator+(readonly notnull left as LinkedList<T>, readonly notnull right as LinkedList<T>) as LinkedList<T>
Description

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]
Parameters
ParameterDescription
leftLeft linked list.
rightRight linked list.
Returns

A new LinkedList containing both operands in order.