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.

Parameters
ParameterDescription
leftLeft hash map.
rightRight hash map.
Returns

True when both maps contain equal entries.

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