Compartilhar via


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

Classificar a lista determinada usando a função determinada de comparação.

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

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

// Signature:
List.sortWith : ('T -> 'T -> int) -> 'T list -> 'T list

// Usage:
List.sortWith comparer list

Parâmetros

  • comparer
    Tipo: 'T -> 'T ->int

    A função para comparar os elementos da lista.

  • list
    Tipo: 'Tlista

    A lista de entrada.

Valor de retorno

A lista classificada.

Comentários

Este é um tipo estável, ou seja, a ordem dos elementos iguais original é preservada.

Essa função é chamada SortWith 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.sortWith.

open System

let list1 = [ "<>"; "&"; "&&"; "&&&"; "<"; ">"; "|"; "||"; "|||" ]
printfn "Before sorting: "
list1 |> 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)
List.sortWith sortFunction list1
|> printfn "After sorting:\n%A"

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#)