Array.length<'T>, fonction (F#)
Retourne la longueur d'un tableau.
Espace de noms/Chemin du module : Microsoft.FSharp.Collections.Array
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
Array.length : 'T [] -> int
// Usage:
Array.length array
Paramètres
array
Type : 'T []Tableau d'entrée.
Valeur de retour
Longueur du tableau.
Notes
Vous pouvez également utiliser la propriété Length.
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
L'exemple de code suivant montre comment utiliser Array.length.
Array.length [| 1 .. 100 |] |> printfn "Length: %d"
Array.length [| |] |> printfn "Length: %d"
Array.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