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