gpt4 book ai didi

scala - Stream[Boolean] 中的 foldLeft 提前终止?

转载 作者:行者123 更新时间:2023-12-04 23:57:58 25 4
gpt4 key购买 nike

我有一个:

val a : Stream[Boolean] = ...

当我按如下方式折叠时
val b = a.foldLeft(false)(_||_)

当它找到第一个 true 时会终止吗?流中的值(value)?如果没有,我该如何做到?

最佳答案

它不会在第一个 true 时终止。您可以使用exists代替:

val b = a.exists(identity)

关于scala - Stream[Boolean] 中的 foldLeft 提前终止?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14611737/

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