bdb9f00c75
Related to KT-12165 Supported functions: filterNotNull, filterIsInstance, mapNotNull, mapNotNullTo, mapIndexedNotNull, mapIndexedNotNullTo Also, "Useless cal on not-null" improved a bit
3 lines
150 B
Kotlin
Vendored
3 lines
150 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
val someList = listOf("alpha", "beta").<caret>mapIndexedNotNullTo(destination = hashSetOf()) { index, value -> index + value.length } |