klyn.collections.Array.operator!=
method
public native static operator!=(readonly notnull left as Array, readonly notnull right as Array) as Boolean
Description

Compares two arrays structurally for inequality.

import klyn.collections

left = f:[1, 2, 3]
right = f:[3, 2, 1]
print(left != right)    # true
Parameters
  • left Left array.
  • right Right array.
Returns

True when arrays differ in size or element values.