Files
kotlin-fork/idea/testData/intentions/loopToCallChain/count_prefix.kt.after
T
Valentin Kipyatkov db53794663 Supported "count()"
2016-08-16 17:38:02 +03:00

6 lines
167 B
Plaintext
Vendored

// WITH_RUNTIME
// INTENTION_TEXT: "Replace with 'count{}'"
fun foo(list: List<String>): Int {
<caret>val count = list.count { it.isNotBlank() }
return count
}