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

Structural 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 ==.
Parameters
  • left Left map.
  • right Right map.
Returns

True when both maps contain the same key/value pairs.