Array.isEmpty <'T>. Função (F#)
Testa se uma matriz está vazia.
Namespace/Module Path: Microsoft.FSharp.Collections.Array
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
Array.isEmpty : 'T [] -> bool
// Usage:
Array.isEmpty array
Parâmetros
array
Tipo: 'T[]A matriz de entrada.
Valor de retorno
true se a matriz está vazia.Caso contrário, retornará false.
Comentários
Essa função é chamada IsEmpty em assemblies compilados.Se você está acessando a função de um idioma diferente F#, ou com a reflexão, use este nome.
Exemplo
O código a seguir mostra como usar Array.isEmpty.
let printArray array1 =
if (Array.isEmpty array1) then
printfn "There are no elements in this array."
else
printfn "This array contains the following elements:"
Array.iter (fun elem -> printf "%A " elem) array1
printfn ""
printArray [| "test1"; "test2" |]
printArray [| |]
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