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,可攜式執行檔 (PE)。