Checks if two IMap instances are structurally equal.
Two IMaps are considered equal if they have the same size and contain
exactly the same key-value pairs. The order of entries does not matter for
equality comparison. Values are compared using JavaScript's ===
operator.
Performance: O(n) where n is the size of the smaller map.
Checks if two IMap instances are structurally equal.
Two IMaps are considered equal if they have the same size and contain exactly the same key-value pairs. The order of entries does not matter for equality comparison. Values are compared using JavaScript's
===
operator.Performance: O(n) where n is the size of the smaller map.