Operators.( <||| )<'T1,'T2,'T3,'U>, fonction (F#)
Applique une fonction à trois valeurs, les valeurs s'affichant sous forme de triple à droite et la fonction à gauche
Espace de noms/Chemin du module : Microsoft.FSharp.Core.Operators
Assembly : FSharp.Core (in FSharp.Core.dll)
// Signature:
( <||| ) : ('T1 -> 'T2 -> 'T3 -> 'U) -> 'T1 * 'T2 * 'T3 -> 'U
// Usage:
func <||| (arg1, arg2, arg3)
Paramètres
func
Type : 'T1 -> 'T2 -> 'T3 -> 'UFonction.
arg1
Type : 'T1Premier argument.
arg2
Type : 'T2Deuxième argument.
arg3
Type : 'T3Troisième argument.
Valeur de retour
Résultat de la fonction.
Exemple
Le code suivant illustre l'utilisation de l'opérateur <|||.
let append4 string1 string2 string3 = string1 + "." + string2 + "." + string3
// The <||| operator
let result3 = append4 <||| ("abc", "def", "ghi")
printfn "append4 <||| (\"abc\", \"def\", \"ghi\") 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