Seq.fold<'T,'State> 函数 (F#)
将函数应用于集合的每个元素,并在整个计算过程中使用一个累加器参数。 如果输入函数为 f,并且元素为 i0...iN,则此函数计算为f (... (f s i0)...) iN。
命名空间/模块路径:Microsoft.FSharp.Collections.Seq
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
Seq.fold : ('State -> 'T -> 'State) -> 'State -> seq<'T> -> 'State
// Usage:
Seq.fold folder state source
参数
folder
类型:'State -> 'T -> 'State可用序列中的每个元素更新状态的函数。
state
类型:'State初始状态。
source
类型:seq<'T>输入序列。
异常
异常 |
Condition |
---|---|
在输入序列为 null 时引发。 |
返回值
计算的最终结果。
备注
此函数在编译的程序集中名为 Fold。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
以下代码演示如何使用 Seq.fold 执行计算序列元素的和的函数。
let sumSeq sequence1 = Seq.fold (fun acc elem -> acc + elem) 0 sequence1
Seq.init 10 (fun index -> index * index)
|> sumSeq
|> printfn "The sum of the elements is %d."
Output
平台
Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2
版本信息
F#核心库版本
支持:2.0,4.0,可移植