共用方式為


Array.fold2<'T1,'T2,'State> 函式 (F#)

將函式套用至從兩個集合繪製的項目組 (從左到右),並透過計算來建立累計值引數的執行緒。 這兩個輸入陣列的長度必須相同,否則會引發 ArgumentException

**命名空間/模組路徑:**Microsoft.FSharp.Collections.Array

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
Array.fold2 : ('State -> 'T1 -> 'T2 -> 'State) -> 'State -> 'T1 [] -> 'T2 [] -> 'State

// Usage:
Array.fold2 folder state array1 array2

參數

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

    根據指定的輸入項目更新狀態的函式。

  • state
    型別:'State

    初始狀態。

  • array1
    型別:'T1 []

    第一個輸入陣列。

  • array2
    型別:'T2 []

    第二個輸入陣列。

例外狀況

例外狀況

條件

ArgumentException

當輸入陣列的長度不同時擲回。

傳回值

最終狀態。

備註

這個函式在已編譯的組件中名為 Fold2。 如果您是透過 F# 以外的語言,或是透過反映來存取函式,請使用這個名稱。

範例

下列程式碼示範 Array.fold2 的用法。

// Use Array.fold2 to perform computations over two arrays (of equal size)
// at the same time.
// Example: Add the greater element at each array position.
let sumGreatest array1 array2 =
    Array.fold2 (fun acc elem1 elem2 ->
        acc + max elem1 elem2) 0 array1 array2

let sum = sumGreatest [| 1; 2; 3 |] [| 3; 2; 1 |]
printfn "The sum of the greater of each pair of elements in the two arrays is %d." sum

Output

  

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Collections.Array 模組 (F#)

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