Array.ofSeq<'T> Function (F#)

Builds a new array from the given enumerable object.

Namespace/Module Path: Microsoft.FSharp.Collections.Array

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

// Signature:
Array.ofSeq : seq<'T> -> 'T []

// Usage:
Array.ofSeq source

Parameters

  • source
    Type: seq<'T>

    The input sequence.

Return Value

The array of elements from the sequence.

Remarks

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

Example

Thhhe following code shows how to use Array.ofSeq.

let array1 = Array.ofSeq ( seq { 1 .. 10 } )

FSI Output

val array1 : int [] = [|1; 2; 3; 4; 5; 6; 7; 8; 9; 10|]

Platforms

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

Version Information

F# Core Library Versions

Supported in: 2.0, 4.0, Portable

See Also

Reference

Collections.Array Module (F#)

Microsoft.FSharp.Collections Namespace (F#)