mapNotNull
Returns a list containing only the non-null results of applying the given transform function to each element in the original array.
Since Kotlin
1.0Samples
Returns a list containing only the non-null results of applying the given transform function to each element in the original collection.
Since Kotlin
1.0Samples
inline fun <K, V, R : Any> Map<out K, V>.mapNotNull(transform: (Map.Entry<K, V>) -> R?): List<R>(source)
Returns a list containing only the non-null results of applying the given transform function to each entry in the original map.