共用方式為


Parallel.iter<'T> 函式 (F#)

將指定的函式套用至陣列的每個項目。

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

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

// Signature:
iter : ('T -> unit) -> 'T [] -> unit

// Usage:
iter action array

參數

  • action
    型別:'T -> unit

  • array
    型別:'T []

    輸入陣列。

備註

使用 [O:System.Threading.Parallel.For],以平行方式執行作業。 沒有指定將特定函式套用至輸入陣列元素的順序。

這個函式在 .NET 組件中名為 Iterate。 如果是透過 F# 以外的 .NET 語言存取成員,或透過反映存取成員,請使用這個名稱。

平台

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

版本資訊

F# 核心程式庫版本

支援版本:4.0

請參閱

參考

Array.Parallel 模組 (F#)

Collections.Array 模組 (F#)