mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-18 15:54:05 +00:00
8 lines
192 B
Kotlin
Vendored
8 lines
192 B
Kotlin
Vendored
// IGNORE_ANNOTATIONS
|
|
|
|
inline class InlineMapEntry<K, V>(private val e: Map.Entry<K, V>) : Map.Entry<K, V> {
|
|
override val key: K get() = e.key
|
|
override val value: V get() = e.value
|
|
}
|
|
|