Files
kotlin-fork/idea/testData/intentions/loopToCallChain/mapIndexedTo.kt
T
2016-08-16 17:38:07 +03:00

7 lines
223 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapIndexedTo(){}'"
fun foo(list: List<String>, target: MutableList<Int>) {
<caret>for ((index, s) in list.withIndex()) {
target.add(s.hashCode() * index)
}
}