bdb9f00c75
Related to KT-12165 Supported functions: filterNotNull, filterIsInstance, mapNotNull, mapNotNullTo, mapIndexedNotNull, mapIndexedNotNullTo Also, "Useless cal on not-null" improved a bit
4 lines
117 B
Kotlin
Vendored
4 lines
117 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
|
|
val x = listOf("1").<caret>mapNotNull { if (it.isNotEmpty()) it.toInt() else null } |