filterNotNullTo
Appends all elements that are not null
to the given destination.
The operation is terminal.
Since Kotlin
1.0Samples
import kotlin.test.*
fun main() {
//sampleStart
val numbers: List<Int?> = listOf(1, 2, null, 4)
val nonNullNumbers = mutableListOf<Int>()
println(nonNullNumbers) // []
numbers.filterNotNullTo(nonNullNumbers)
println(nonNullNumbers) // [1, 2, 4]
//sampleEnd
}