public native operator[](key as K) as V
Gets or sets the value associated with the key.
| Parameter | Description |
|---|---|
key | The key to search for. |
The value associated with the key.
values = SortedMapSync<String, Int>() values["answer"] = 42 assert values["answer"] == 42