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

将函数应用于一个值;值在左边,函数在右边。

命名空间/模块路径: Microsoft.FSharp.Core.Operators

程序集:FSharp.Core(在 FSharp.Core.dll 中)

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

// Usage:
arg |> func

参数

  • arg
    类型:'T1

    参数。

  • func
    类型:'T1 -> 'U

    函数。

返回值

函数结果。

示例

以下示例演示如何使用前向管道运算符。

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

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

let result2 = "abc" 
              |> append1
              |> append2
printfn "result2: %A" result2

[1; 2; 3]
|> List.map (fun elem -> elem * 100)
|> List.rev
|> List.iter (fun elem -> printf "%d " elem)
printfn ""
  

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Core.Operators 模块 (F#)

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