public native static operator+(readonly notnull left as ArraySync<T>, readonly notnull right as ArraySync<T>) as ArraySync<T>
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]
| Parameter | Description |
|---|---|
left | Left synchronized array. |
right | Right synchronized array. |
New synchronized fixed array containing both operands.