Partager via


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

Applique une fonction à deux valeurs, les valeurs s'affichant sous forme de paire à gauche et la fonction à droite.

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

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

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

// Usage:
(arg1, arg2) ||> func

Paramètres

  • arg1
    Type : 'T1

    Premier argument.

  • arg2
    Type : 'T2

    Deuxième argument.

  • func
    Type : 'T1 -> 'T2 -> 'U

    Fonction.

Valeur de retour

Résultat de la fonction.

Exemple

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

let append string1 string2 = string1 + "." + string2

let result1 = ("abc", "def") ||> append
printfn "(\"abc\", \"def\") ||> append gives %A" result1

let toUpper (string1:string) (string2:string) = string1.ToUpper(), string2.ToUpper()

let result2 = ("abc", "def")
               ||> toUpper
               ||> append

printfn "result2: %A" result2
  

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