mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
7 lines
290 B
Kotlin
Vendored
7 lines
290 B
Kotlin
Vendored
// IGNORE_ANNOTATIONS
|
|
|
|
inline class InlineMutableMapEntry<K, V>(private val e: MutableMap.MutableEntry<K, V>) : MutableMap.MutableEntry<K, V> {
|
|
override val key: K get() = e.key
|
|
override val value: V get() = e.value
|
|
override fun setValue(newValue: V): V = e.setValue(newValue)
|
|
} |