withPutOrChanged
inline fun <K, V> Map<out K, V>.withPutOrChanged(key: K, valueOnPut: () -> V, transformOnChange: (currentValue: V) -> V): Map<K, V>(source)
Creates copy of the map and 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
the copy of the map.