6 lines
143 B
Plaintext
Vendored
6 lines
143 B
Plaintext
Vendored
// WITH_RUNTIME
|
|
fun foo(list: List<String>): Int? {
|
|
<caret>return list
|
|
.map { it.length }
|
|
.firstOrNull { it > 0 }
|
|
} |