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

Concatenates two synchronized fixed arrays into a new synchronized fixed array.

The returned array has the same concrete runtime type as the left operand and contains all elements from both operands in order.

import klyn.collections

left = fs:[10, 20]
right = fs:[30, 40]
print(left + right)    # fs:[10, 20, 30, 40]
Parameters
ParameterDescription
leftLeft synchronized array.
rightRight synchronized array.
Returns

New synchronized fixed array containing both operands.