Partager via


Operators.( |> )<'T1,'U>, fonction (F#)

Applique une fonction à une valeur, la valeur s'affichant à gauche et la fonction à droite.

Espace de noms/Chemin du module : Microsoft.FSharp.Core.Operators

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

// Signature:
( |> ) : 'T1 -> ('T1 -> 'U) -> 'U

// Usage:
arg |> func

Paramètres

  • arg
    Type : 'T1

    Argument.

  • func
    Type : 'T1 -> 'U

    Fonction.

Valeur de retour

Résultat de la fonction.

Exemple

L'exemple suivant illustre l'utilisation de l'opérateur de canal.

let append1 string1 = string1 + ".append1"
let append2 string1 = string1 + ".append2"

let result1 = "abc" |> append1
printfn "\"abc\" |> append1 gives %A" result1

let result2 = "abc" 
              |> append1
              |> append2
printfn "result2: %A" result2

[1; 2; 3]
|> List.map (fun elem -> elem * 100)
|> List.rev
|> List.iter (fun elem -> printf "%d " elem)
printfn ""
  

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

Voir aussi

Référence

Core.Operators, module (F#)

Microsoft.FSharp.Core, espace de noms (F#)