Parallel.iter<'T> Function (F#)

Apply the given function to each element of the array.

Namespace/Module Path: Microsoft.FSharp.Collections.ArrayModule.Parallel

Assembly: FSharp.Core (in FSharp.Core.dll)

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

// Usage:
iter action array

Parameters

  • action
    Type: 'T -> unit

  • array
    Type: 'T []

    The input array.

Remarks

Performs the operation in parallel using [O:System.Threading.Parallel.For]. The order in which the given function is applied to elements of the input array is not specified.

This function is named Iterate in the .NET assembly. If accessing the member from a .NET language other than F#, or through reflection, use this name.

Platforms

Windows 7, Windows Vista SP2, Windows XP SP3, Windows XP x64 SP2, Windows Server 2008 R2, Windows Server 2008 SP2, Windows Server 2003 SP2

Version Information

F# Runtime

Supported in: 4.0

Silverlight

Not supported

See Also

Reference

Array.Parallel Module (F#)

Collections.Array Module (F#)