Files
kotlin-fork/idea/testData/inspectionsLocal/collections/convertCallChainIntoSequence/iterable.kt.after
T
2018-10-09 12:22:17 +03:00

5 lines
126 B
Plaintext
Vendored

// WITH_RUNTIME
fun test(i: Iterable<Int>): List<Int> {
return i.asSequence().filter { it > 1 }.map { it * 2 }.toList()
}