List.length <'T>. Função (F#)
Retorna o comprimento da lista.
Namespace/Module Path: Microsoft.FSharp.Collections.List
Assembly: FSharp.Core (em FSharp.Core.dll)
// Signature:
List.length : 'T list -> int
// Usage:
List.length list
Parâmetros
list
Tipo: 'TlistaA lista de entrada.
Valor de retorno
O comprimento da lista.
Comentários
Essa função é chamada Length 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 List.length.
List.length [ 1 .. 100 ] |> printfn "Length: %d"
List.length [ ] |> printfn "Length: %d"
List.length [ 1 .. 2 .. 100 ] |> printfn "Length: %d"
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