public native static operator!=(readonly notnull left as ArraySync, readonly notnull right as ArraySync) as Boolean
Compares two synchronized arrays structurally for inequality.
import klyn.collections left = fs:[1, 2, 3] right = fs:[3, 2, 1] print(left != right) # true
True when arrays differ in size or element values.