13 lines
416 B
Kotlin
Vendored
13 lines
416 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'flatMap{}.mapNotNull{}.mapTo(){}'"
|
|
// INTENTION_TEXT_2: "Replace with 'asSequence().flatMap{}.mapNotNull{}.mapTo(){}'"
|
|
fun foo(list: List<String>, target: MutableList<String>) {
|
|
<caret>for (s in list) {
|
|
for (i in s.indices) {
|
|
val v = bar(i) ?: continue
|
|
target.add(v.substring(1))
|
|
}
|
|
}
|
|
}
|
|
|
|
fun bar(p: Int): String? = null |