List.foldBack<'T,'State> 函数 (F#)
将函数应用于集合的每个元素,并在整个计算过程中使用一个累加器参数。 如果输入函数为 f,并且元素为 i0...iN,则此函数计算为f i0 (...(f iN s))。
命名空间/模块路径: Microsoft.FSharp.Collections.List
程序集:FSharp.Core(在 FSharp.Core.dll 中)
// Signature:
List.foldBack : ('T -> 'State -> 'State) -> 'T list -> 'State -> 'State
// Usage:
List.foldBack folder list state
参数
folder
类型:'T -> 'State -> 'State要更新为输入元素指定的状态的函数。
list
类型:'T list输入列表。
state
类型:'State初始状态。
返回值
最终状态值。
备注
此函数在编译的程序集中名为 FoldBack。 如果从 F# 以外的语言中访问函数,或通过反射访问成员,请使用此名称。
示例
下面的代码示例演示 List.foldBack 的用法。
let sumListBack list = List.foldBack (fun acc elem -> acc + elem) list 0
printfn "%d" (sumListBack [1; 2; 3])
// For a calculation in which the order of traversal is important, fold and foldBack have different
// results. For example, replacing foldBack with fold in the copyList function
// produces a function that reverses the list, rather than copying it.
let copyList list = List.foldBack (fun elem acc -> elem::acc) list []
printfn "%A" (copyList [1 .. 10])
Output
平台
Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2
版本信息
F#核心库版本
支持:2.0,4.0,可移植