Eliminate nulls from an Iterable and array

suggest change

Sometimes we need to change type from Collection<T?> to Collections<T>. In that case, filterNotNull is our solution.

val a: List<Int?> = listOf(1, 2, 3, null)
val b: List<Int> = a.filterNotNull()

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents