mirror of
https://github.com/ReVanced/revanced-patcher.git
synced 2026-01-20 09:53:55 +00:00
7 lines
187 B
Kotlin
7 lines
187 B
Kotlin
package collections
|
|
|
|
actual fun <K, V> MutableMap<K, V>.kmpMerge(
|
|
key: K,
|
|
value: V,
|
|
remappingFunction: (oldValue: V, newValue: V) -> V
|
|
) = merge(key, value, remappingFunction) |