Partager via


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

Applique une fonction à trois valeurs, les valeurs s'affichant sous forme de triple à 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 * 'T3 -> ('T1 -> 'T2 -> 'T3 -> 'U) -> 'U

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

Paramètres

  • arg1
    Type : 'T1

    Premier argument.

  • arg2
    Type : 'T2

    Deuxième argument.

  • arg3
    Type : 'T3

    Troisième argument.

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

    Fonction.

Valeur de retour

Résultat de la fonction.

Exemple

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

let append4 string1 string2 string3 = string1 + "." + string2 + "." + string3

// The |||> operator
let result3 = ("abc", "def", "ghi") |||> append4
printfn "(\"abc\", \"def\", \"ghi\") |||> append4 gives  %A" result3
  

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