共用方式為


Operators.( << )<'T2,'T3,'T1> 函式 (F#)

撰寫兩個函式,而右邊的函式會先套用。

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

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

// Signature:
( << ) : ('T2 -> 'T3) -> ('T1 -> 'T2) -> 'T1 -> 'T3

// Usage:
func2 << func1

參數

  • func2
    型別:'T2 -> 'T3

    要套用的第二個函式。

  • func1
    型別:'T1 -> 'T2

    要套用的第一個函式。

傳回值

輸入函式的撰寫。

備註

這個運算子稱為「反向」(Backward) 或「逆向複合運算子」(Reverse Composition Operator)。

範例

下列範例說明反向複合運算子 (<<) 的用法。

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

// Reverse composition of two functions.
let appendBothReverse = append1 << append2
printfn "%s" (appendBothReverse "abc")

// Reverse composition of three functions.
let append3 string1 = string1 + ".append3"
printfn "%s" ((append1 << append2 << append3) "abc")

// Reverse composition of functions with more than one parameter.
let appendString (string1:string) (string2:string) = string1 + string2

let appendFileExtension extension =
    appendString extension << appendString "." 
printfn "%s" (appendFileExtension "myfile" "txt")
  

平台

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

版本資訊

F# 核心程式庫版本

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

請參閱

參考

Core.Operators 模組 (F#)

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