filterNotNull所在位置是kotlin.sequences.filterNotNull,其相关用法介绍如下。

用法:

fun <T : Any> Sequence<T?>.filterNotNull(): Sequence<T>

返回包含所有不是 null 的元素的序列。

操作是 intermediatestateless

例子:

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
}

输出:

[1, 2, 4]