putOrChange
inline fun <K, V> MutableMap<K, V>.putOrChange(key: K, valueOnPut: () -> V, transformOnChange: (currentValue: V) -> V): V(source)
Depending on presence of value corresponding to the given key either puts new value calculated by valueOnPut or changes the present value with transformOnChange.
Return
result value corresponding to the key.