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

7 lines
232 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapIndexed{}.firstOrNull{}'"
fun foo(list: List<String>): Int? {
<caret>return list
.mapIndexed { index, s -> s.length * index }
.firstOrNull { it > 0 }
}