Array.sortInPlaceWith<'T>, fonction (F#)
Trie les éléments d'un tableau en faisant muter le tableau sur place et en appliquant l'ordre obtenu par la fonction de comparaison donnée.
Espace de noms/Chemin du module : Microsoft.FSharp.Collections.Array
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
Array.sortInPlaceWith : ('T -> 'T -> int) -> 'T [] -> unit
// Usage:
Array.sortInPlaceWith comparer array
Paramètres
comparer
Type : 'T -> 'T -> intFonction permettant de comparer des paires d'éléments de tableau.
array
Type : 'T []Tableau d'entrée.
Notes
Cette fonction se nomme SortInPlaceWith 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.sortInPlaceWith.
open System
let array1 = [| "<>"; "&"; "&&"; "&&&"; "<"; ">"; "|"; "||"; "|||" |]
printfn "Before sorting: "
array1 |> printfn "%A"
let sortFunction (string1:string) (string2:string) =
if (string1.Length > string2.Length) then
1
else if (string1.Length < string2.Length) then
-1
else
String.Compare(string1, string2)
Array.sortInPlaceWith sortFunction array1
printfn "After sorting: "
array1 |> printfn "%A"
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