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

用法:

inline fun <K, V> Map<out K, V>.filterValues(
    predicate: (V) -> Boolean
): Map<K, V>

返回包含与给定 predicate 值匹配的所有键值对的映射。

返回的映射保留原始映射的条目迭代顺序。

例子:

import kotlin.test.*
import java.util.*

fun main(args: Array<String>) {
//sampleStart
val originalMap = mapOf("key1" to 1, "key2" to 2, "key3" to 3)

val filteredMap = originalMap.filterValues { it >= 2 }
println(filteredMap) // {key2=2, key3=3}
// original map has not changed
println(originalMap) // {key1=1, key2=2, key3=3}

val nonMatchingPredicate: (Int) -> Boolean = { it == 0 }
val emptyMap = originalMap.filterValues(nonMatchingPredicate)
println(emptyMap) // {}
//sampleEnd
}

输出:

{key2=2, key3=3}
{key1=1, key2=2, key3=3}
{}