klyn.collections.List.operator+
method
public static operator+(left as List<T>, right as List<T>) as List<T>
Description

Concatenates two lists into a new list.

import klyn.collections

data = [10, 20] + [30, 40]
print(data)  # [10, 20, 30, 40]
Parameters
ParameterDescription
leftLeft list.
rightRight list.
Returns

A new list containing both operands in order.