Files
kotlin-fork/idea/resources/intentionDescriptions/SimplifyForIntention/before.kt.template
T
2016-01-14 13:41:45 +03:00

5 lines
123 B
Plaintext

val map = hashMapOf(1 to 2)
for (<spot>entry</spot> in map.entries) {
val key = entry.key
val value = entry.value
}