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