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

Compares two synchronized arrays structurally for inequality.

import klyn.collections

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

True when arrays differ in size or element values.