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

9 lines
249 B
Kotlin
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapIndexed{}.firstOrNull{}'"
fun foo(list: List<String>): Int? {
<caret>for ((index, s) in list.withIndex()) {
val x = s.length * index
if (x > 0) return x
}
return null
}