次の方法で共有


Operators.( << )<'T2,'T3,'T1> 関数 (F#)

2 つの関数を合成します。右側の関数が最初に適用されます。

名前空間/モジュール パス: Microsoft.FSharp.Core.Operators

アセンブリ: FSharp.Core (FSharp.Core.dll 内)

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

// Usage:
func2 << func1

パラメーター

  • func2
    型: 'T2 -> 'T3

    適用する 2 つ目の関数。

  • func1
    型: 'T1 -> 'T2

    適用する 1 つ目の関数。

戻り値

入力関数の合成。

解説

この演算子を、後方合成演算子または逆合成演算子と呼びます。

使用例

逆合成演算子 (<<) の使用例を次に示します。

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

参照

関連項目

Core.Operators モジュール (F#)

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