Compartilhar via


Array.Empty <'T>. Função de tipo (F#)

Retorna uma matriz vazia do tipo especificado.

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

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

// Signature:
Array.empty<'T> :  'T []

// Usage:
Array.empty

Valor de retorno

Uma matriz vazia.

Comentários

Essa função é chamada Empty em assemblies compilados.Se você está acessando a função de uma linguagem .NET a não ser F#, ou com a reflexão, use este nome.

Exemplo

O código a seguir mostra como usar Array.empty.

// Specify the type by using a type argument.
let array1 = Array.empty<int>
// Specify the type by using a type annotation.
let array2 : int array = Array.empty

// Even though array3 has a generic type,
// you can still use methods such as Length on it.
let array3 = Array.empty
printfn "Length of empty array: %d" array3.Length

Saída

  

Plataformas

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

Informações de Versão

Versões da biblioteca principal de F#

Suportado em: 2,0, 4,0, portáteis

Consulte também

Referência

Módulo de Collections.Array (F#)

Microsoft.FSharp.Collections Namespace (F#)