共用方式為


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

將函式套用至值,右邊是值,而左邊是函式

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

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

// Signature:
( <| ) : ('T -> 'U) -> 'T -> 'U

// Usage:
func <| arg1

參數

  • func
    型別:'T -> 'U

    函式。

  • arg1
    型別:'T

    引數。

傳回值

函式結果。

備註

此函式稱為「反向」(Backward) 或「逆向管道運算子」(Reverse Pipe Operator)。

範例

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

let append1 string1 = string1 + ".append1"
let append2 string1 = string1 + ".append2"

let result1 = append1 <| "abc"
printfn "append1 <| \"abc\" gives %A" result1

// Reverse pipelines require parentheses.
let result2 :string = append2 <| (append1 <| "abc")
printfn "result2: %A" result2

// Reverse pipelines can be used to eliminate the need for
// parentheses in some expressions.
raise <| new System.Exception("A failure occurred.")
  

平台

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

版本資訊

F# 核心程式庫版本

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

請參閱

參考

Core.Operators 模組 (F#)

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