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

7 lines
209 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapIndexed{}.forEach{}'"
fun foo(list: List<String>) {
list
.mapIndexed { index, s -> s.length * index }
.forEach { println(it) }
}