klyn.collections.Map.operator==
method
public static operator==(readonly notnull left as Map, readonly notnull right as Map) as Boolean:
DescriptionStructural equality between two maps.
Two maps are equal when:
- they have the same number of entries,
- every key of the left map exists in the right map,
- and associated values are equal with `==`.
ReturnsTrue when both maps contain the same key/value pairs.