Compartilhar via


Função List.isEmpty<'T> (F#)

Testa se uma lista está vazia.

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

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

// Signature:
List.isEmpty : 'T list -> bool

// Usage:
List.isEmpty list

Parâmetros

  • list
    Tipo: 'Tlista

    A lista de entrada.

Valor de retorno

true se a lista estiver vazia. Caso contrário, retornará false.

Comentários

Essa função é chamada IsEmpty 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 List.isEmpty.

let printList list1 = 
    if (List.isEmpty list1) then
        printfn "There are no elements in this list." 
    else
        printfn "This list contains the following elements:"
        List.iter (fun elem -> printf "%A " elem) list1
        printfn ""
printList [ "test1"; "test2" ]
printList [ ]

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 Collections.List (F#)

Namespace Microsoft.FSharp.Collections (F#)