Operators.( <|| )<'T1,'T2,'U> – funkce (F#)
Použít funkci dvě hodnoty, hodnoty právě pár vpravo funkce vlevo
Cesta k oboru názvů nebo modul: Microsoft.FSharp.Core.Operators
Sestavení: FSharp.Core (v FSharp.Core.dll)
// Signature:
( <|| ) : ('T1 -> 'T2 -> 'U) -> 'T1 * 'T2 -> 'U
// Usage:
func <|| (arg1, arg2)
Parametry
func
Typ:'T1 -> 'T2 -> 'UFunkce.
arg1
Typ:'T1První argument.
arg2
Typ:'T2Druhý argument.
Vrácená hodnota
Výsledek funkce.
Příklad
Následující příklad ukazuje použití <|| operátor.
let append string1 string2 = string1 + "." + string2
let result1 = append <|| ("abc", "def")
printfn "append <|| (\"abc\", \"def\") gives %A" result1
let toUpper (string1:string) (string2:string) = string1.ToUpper(), string2.ToUpper()
// Reverse pipelines require parentheses.
let result2 = append <|| (toUpper <|| ("abc", "def"))
printfn "result2: %A" result2
Platformy
Windows 8, Windows 7, Windows Server 2012 Windows Server 2008 R2
Informace o verzi
F# základní verze knihovny
Podporovány: 2.0, 4.0, přenosné