filterNotNull

Common
JVM
JS
Native
1.0
fun <T : Any> Sequence<T?>.filterNotNull(): Sequence<T>

Returns a sequence containing all elements that are not null.

The operation is intermediate and stateless.