ae71833a12
Descriptors for builtin class members on JVM are substituted.
6 lines
215 B
Kotlin
Vendored
6 lines
215 B
Kotlin
Vendored
// !DUMP_DEPENDENCIES
|
|
// WITH_RUNTIME
|
|
// FULL_JDK
|
|
|
|
fun <K, V> Map<out K, V>.plus(pair: Pair<K, V>): Map<K, V> =
|
|
if (this.isEmpty()) mapOf(pair) else LinkedHashMap(this).apply { put(pair.first, pair.second) } |