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

Compares two hash maps structurally for inequality.

Parameters
ParameterDescription
leftLeft hash map.
rightRight hash map.
Returns

True when the maps differ.

Example
left = HashMap<String, Int>({"answer": 42})
right = HashMap<String, Int>({"answer": 43})
assert left != right