mapNotNull
inline fun <T, R : Any> Array<out T>.mapNotNull(
transform: (T) -> R?
): List<R>
Returns a list containing only the non-null results of applying the given transform function to each element in the original array.
Returns a list containing only the non-null results of applying the given transform function to each element in the original collection.