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

Compares two sorted maps structurally.

Parameters
ParameterDescription
leftLeft map.
rightRight map.
Returns

True when both maps contain equal entries.

Example
assert t:{"a": 1, "b": 2} == t:{"b": 2, "a": 1}