fun <T : Any> Sequence<T?>.filterNotNull(): Sequence<T>
Returns a sequence containing all elements that are not null
.
The operation is intermediate and stateless.
import kotlin.test.*
fun main(args: Array<String>) {
//sampleStart
val numbers: List<Int?> = listOf(1, 2, null, 4)
val nonNullNumbers = numbers.filterNotNull()
println(nonNullNumbers) // [1, 2, 4]
//sampleEnd
}
© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.sequences/filter-not-null.html