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 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Core.Operators 模块 (F#)

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