Operators.( <|| )<'T1,'T2,'U> 函式 (F#)
將函式套用至兩個值,右邊是成對的值,而左邊是函式
**命名空間/模組路徑:**Microsoft.FSharp.Core.Operators
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
( <|| ) : ('T1 -> 'T2 -> 'U) -> 'T1 * 'T2 -> 'U
// Usage:
func <|| (arg1, arg2)
參數
func
型別:'T1 -> 'T2 -> 'U函式。
arg1
型別:'T1第一個引數。
arg2
型別:'T2第二個引數。
傳回值
函式結果。
範例
下列範例說明 <|| 運算子的用法。
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
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。