5 lines
200 B
Plaintext
Vendored
5 lines
200 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
// INTENTION_TEXT: "Replace with 'mapIndexedTo(){}'"
|
|
fun foo(list: List<String>, target: MutableList<Int>) {
|
|
<caret>list.mapIndexedTo(target) { index, s -> s.hashCode() * index }
|
|
} |