public native static operator==(readonly notnull left as SortedMap, readonly notnull right as SortedMap) as Boolean
Compares two sorted maps structurally.
| Parameter | Description |
|---|---|
left | Left map. |
right | Right map. |
True when both maps contain equal entries.
assert t:{"a": 1, "b": 2} == t:{"b": 2, "a": 1}