共用方式為


Operators.( ||> )<'T1,'T2,'U> 函式 (F#)

將函式套用至兩個值,左邊是成對的值,而右邊是函式

**命名空間/模組路徑:**Microsoft.FSharp.Core.Operators

組件:FSharp.Core (在 FSharp.Core.dll 中)

// Signature:
( ||> ) : 'T1 * 'T2 -> ('T1 -> 'T2 -> 'U) -> 'U

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

參數

  • arg1
    型別:'T1

    第一個引數。

  • arg2
    型別:'T2

    第二個引數。

  • func
    型別:'T1 -> 'T2 -> 'U

    函式。

傳回值

函式結果。

範例

下列範例說明 ||> 運算子的用法。

let append string1 string2 = string1 + "." + string2

let result1 = ("abc", "def") ||> append
printfn "(\"abc\", \"def\") ||> append gives %A" result1

let toUpper (string1:string) (string2:string) = string1.ToUpper(), string2.ToUpper()

let result2 = ("abc", "def")
               ||> toUpper
               ||> append

printfn "result2: %A" result2
  

平台

Windows 8 中, Windows 7, Windows Server 2012 上, Windows Server 2008 R2

版本資訊

F# 核心程式庫版本

支援版本:2.0, 4.0,可攜式執行檔 (PE)。

請參閱

參考

Core.Operators 模組 (F#)

Microsoft.FSharp.Core 命名空間 (F#)