当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Scala Future.reduceLeft用法及代码示例


reduceLeft 方法(或属性)属于 scala.concurrent.Future 对象(object),其相关用法说明如下。

用法:

final def reduceLeft[T, R >: T](futures: Iterable[Future[T]])(op: (R, T) => R)(implicit executor: ExecutionContext): Future[R]

在提供的期货上启动非阻塞、异步、左归约,其中零是第一个 Future 的结果值.

例子:

val futureSum = Future.reduceLeft(futures)(_ + _)

类型参数:

R

返回的值的类型Future

T

输入 Futures 的值的类型

值参数:

futures

scala.collection.immutable.Iterable 的期货要减少

op

应用于期货结果的reduce操作

返回:

Future 保存减少的结果

源码:

Future.scala

相关用法


注:本文由纯净天空筛选整理自scala-lang.org大神的英文原创作品 Future.reduceLeft。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。