This topic has not yet been rated - Rate this topic

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

Create an array given the dimension and a generator function to compute the elements.

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

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

// Signature:
init : int -> (int -> 'T) -> 'T []

// Usage:
init count initializer
count

Type: int

The size of the array.

initializer

Type: int -> 'T

The function that generates the elements.

The created array.

Performs the operation in parallel using System.Threading.Tasks.Parallel.For. The order in which the given function is applied to indices is not specified.

This function is named Initialize in compiled assemblies. If you are accessing the function from a .NET language other than F#, or through reflection, use this name.

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

F# Core Library Versions

Supported in: 4.0

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.