Files
kotlin-fork/idea/resources/intentionDescriptions/LoopToCallChainIntention/after.kt.template
T
2016-08-16 17:37:56 +03:00

3 lines
99 B
Plaintext

fun foo(list: List<String>): String? {
<spot>return list.firstOrNull { it.length > 0 }</spot>
}