public native static operator==(readonly notnull left as ArraySync, readonly notnull right as ArraySync) as Boolean
Compares two synchronized arrays structurally.
Arrays are equal when they have the same fixed size and every element at the same index compares equal.
import klyn.collections left = fs:[1, 2, 3] right = fs:[1, 2, 3] print(left == right) # true
True when both arrays contain equal elements in the same order.