Array.foldBack<'T,'State> 函数 (F#)
更新:2010 年 8 月
将函数应用于数组的每个元素,并在整个计算过程中使用一个累加器参数。 如果输入函数为 f,并且元素为 i0...iN,则计算 f i0 (...(f iN s))。
命名空间/模块路径: Microsoft.FSharp.Collections.Array
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
Array.foldBack : ('T -> 'State -> 'State) -> 'T [] -> 'State -> 'State
// Usage:
Array.foldBack folder array state
参数
folder
类型:'T -> 'State -> 'State要更新为输入元素指定的状态的函数。
array
类型:'T []输入数组。
state
类型:'State初始状态。
返回值
最终状态。
备注
此函数在编译的程序集中名为 FoldBack。 如果从 F# 以外的 .NET 语言中访问函数,或通过反射访问成员,请使用此名称。
示例
以下代码示例显示了 Array.fold 和 Array.foldBack 之间的区别。
// This computes 3 - 2 - 1, which evalates to -6.
let subtractArray array1 = Array.fold (fun acc elem -> acc - elem) 0 array1
printfn "%d" (subtractArray [| 1; 2; 3 |])
// This computes 3 - (2 - (0 - 1)), which evaluates to 2.
let subtractArrayBack array1 = Array.foldBack (fun elem acc -> elem - acc) array1 0
printfn "%d" (subtractArrayBack [| 1; 2; 3 |])
Output
平台
Windows 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2
版本信息
F# 运行时
受以下版本支持:2.0、4.0
Silverlight
受以下版本支持:3
请参见
参考
Microsoft.FSharp.Collections 命名空间 (F#)
修订记录
Date |
修订记录 |
原因 |
---|---|---|
2010 年 8 月 |
添加了代码示例。 |
信息补充。 |