List.foldBack2<'T1,'T2,'State> 函数 (F#)

将函数应用于两个集合的对应元素,并在整个计算过程中使用一个累加器参数。 集合必须具有相同的大小。 如果输入函数为 f,并且元素为 i0...iN 和 j0...jN,则此函数计算为 f i0 j0 (...(f iN jN s))。

命名空间/模块路径: Microsoft.FSharp.Collections.List

程序集:FSharp.Core(在 FSharp.Core.dll 中)

// Signature:
List.foldBack2 : ('T1 -> 'T2 -> 'State -> 'State) -> 'T1 list -> 'T2 list -> 'State -> 'State

// Usage:
List.foldBack2 folder list1 list2 state

参数

  • folder
    类型:'T1 -> 'T2 -> 'State -> 'State

    要更新为输入元素指定的状态的函数。

  • list1
    类型:'T1 list

    第一个输入列表。

  • list2
    类型:'T2 list

    第二个输入列表。

  • state
    类型:'State

    初始状态。

返回值

最终状态值。

异常

异常

Condition

ArgumentException

在输入列表的长度不同时引发。

备注

此函数在编译的程序集中名为 FoldBack2。 如果从 F# 以外的 .NET 语言中访问函数,或通过反射访问成员,请使用此名称。

以下代码示例演示了 List.foldBack2 之间的区别。

示例

type Transaction2 =
    | Deposit
    | Withdrawal
    | Interest

let transactionTypes2 = [Deposit; Deposit; Withdrawal; Interest]
let transactionAmounts2 = [100.00; 1000.00; 95.00; 0.05 / 12.0 ]
let initialBalance2 = 200.00

// Because fold2 processes the lists by starting at the head element,
// the interest is calculated last, on the balance of 1205.00.
let endingBalance2 = List.fold2 (fun acc elem1 elem2 ->
                                match elem1 with
                                | Deposit -> acc + elem2
                                | Withdrawal -> acc - elem2
                                | Interest -> acc * (1.0 + elem2))
                                initialBalance2
                                transactionTypes2
                                transactionAmounts2
printfn "%f" endingBalance2

Output

  
// Because foldBack2 processes the lists by starting at end of the list,
// the interest is calculated first, on the balance of only 200.00.
let endingBalance3 = List.foldBack2 (fun elem1 elem2 acc ->
                                match elem1 with
                                | Deposit -> acc + elem2
                                | Withdrawal -> acc - elem2
                                | Interest -> acc * (1.0 + elem2))
                                transactionTypes2
                                transactionAmounts2
                                initialBalance2
printfn "%f" endingBalance3

Output

  

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Collections.List 模块 (F#)

Microsoft.FSharp.Collections 命名空间 (F#)