gpt4 book ai didi

scala - 检查集合中的所有项目是否与 Scala 中的谓词匹配

转载 作者:行者123 更新时间:2023-12-03 07:10:13 25 4
gpt4 key购买 nike

测试集合中的所有项目是否与谓词匹配的最惯用的方法是什么?

有什么元素吗?

最佳答案

为此有内置函数:

List(1,2,3,4).forall(x => x < 5)
res0: Boolean = true

对于任何:

List(1,2,3,4).exists(x => x > 3)
res1: Boolean = true

关于scala - 检查集合中的所有项目是否与 Scala 中的谓词匹配,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15932137/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com