gpt4 book ai didi

scala - 寻找 Scaladoc 帮助,reduceLeft

转载 作者:行者123 更新时间:2023-12-04 14:47:16 24 4
gpt4 key购买 nike

说,我想更好地了解什么 reduceLeft方法适用于 Array[String]
scaladoc说:
enter image description here

好的,我必须再问一次,这个方法有什么作用?更重要的是,如果我不能依靠 scaladoc 来告诉我,我在哪里可以找到?

最佳答案

是的 - Scaladoc 条目可能更有帮助。

另一个有用的文档来源是 Scala Documentation网站,其中有 this说一下reduceLeft:

xs reduceLeft op

Apply binary operation op between successive elements of non-empty collection xs, going left to right.



所以它所做的是通过连续应用二元运算符将集合减少到单个值。一些例子:
scala> Array(1, 2, 3, 4) reduceLeft (_ + _)
res2: Int = 10

scala> Array("foo", "bar", "baz") reduceLeft (_ + _)
res3: String = foobarbaz

关于scala - 寻找 Scaladoc 帮助,reduceLeft,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14188290/

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