public native static operator!=(readonly notnull left as HashMap, readonly notnull right as HashMap) as Boolean
Compares two hash maps structurally for inequality.
| Parameter | Description |
|---|---|
left | Left hash map. |
right | Right hash map. |
True when the maps differ.
left = HashMap<String, Int>({"answer": 42})
right = HashMap<String, Int>({"answer": 43})
assert left != right