List.length<'T>, fonction (F#)
Retourne la longueur de la liste.
Espace de noms/Chemin du module : Microsoft.FSharp.Collections.List
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
List.length : 'T list -> int
// Usage:
List.length list
Paramètres
list
Type : 'TlistListe d'entrée.
Valeur de retour
Longueur de la liste.
Notes
Cette fonction se nomme Length dans les assemblys compilés.Si vous accédez à la fonction à partir d'un langage autre que F# ou par réflexion, utilisez ce nom.
Exemple
Le code suivant montre comment utiliser List.length :
List.length [ 1 .. 100 ] |> printfn "Length: %d"
List.length [ ] |> printfn "Length: %d"
List.length [ 1 .. 2 .. 100 ] |> printfn "Length: %d"
Sortie
Plateformes
Windows 8, Windows 7, Windows Server 2012, Windows Server 2008 R2
Informations de version
Versions de bibliothèque principale F#
Prise en charge dans : 2,0, 4,0, portables