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初始狀態。
傳回值
最終狀態值。
例外狀況
例外狀況 |
條件 |
---|---|
會在輸入清單的長度不同時擲回。 |
備註
這個函式在已編譯的組件中名為 FoldBack2。 如果您是透過 F# 以外的 .NET 語言,或是透過反映來存取函式,請使用這個名稱。
下列程式碼範例說明 List.fold2 與 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,可攜式執行檔 (PE)。