Operators.( |||> )<'T1,'T2,'T3,'U> 函式 (F#)
將函式套用至三個值,左邊是三重的值,而右邊是函式
**命名空間/模組路徑:**Microsoft.FSharp.Core.Operators
組件:FSharp.Core (在 FSharp.Core.dll 中)
// Signature:
( |||> ) : 'T1 * 'T2 * 'T3 -> ('T1 -> 'T2 -> 'T3 -> 'U) -> 'U
// Usage:
(arg1, arg2, arg3) |||> func
參數
arg1
型別:'T1第一個引數。
arg2
型別:'T2第二個引數。
arg3
型別:'T3第三個引數。
func
型別:'T1 -> 'T2 -> 'T3 -> 'U函式。
傳回值
函式結果。
範例
下列範例說明 |||> 運算子的用法。
let append4 string1 string2 string3 = string1 + "." + string2 + "." + string3
// The |||> operator
let result3 = ("abc", "def", "ghi") |||> append4
printfn "(\"abc\", \"def\", \"ghi\") |||> append4 gives %A" result3
平台
Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2
版本資訊
F# 核心程式庫版本
支援版本:2.0, 4.0,可攜式執行檔 (PE)。