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

5 lines
163 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'mapTo(){}'"
fun foo(list: List<String>, target: MutableList<Int>) {
<caret>list.mapTo(target) { it.length }
}