共用方式為


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

    引數。

傳回值

函式結果。

備註

函式被指為 回溯 或 反向的管道運算子 。

範例

下列範例示範如何使用 <|運算子。

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 7、Windows Vista SP2、Windows XP SP3、Windows XP x64 SP2、Windows Server 2008 R2、Windows Server 2008 SP2、Windows Server 2003 SP2

版本資訊

F# 執行階段

支援版本:2.0、4.0

Silverlight

支援版本:3

請參閱

參考

Core.Operators 模組 (F#)

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