Sdílet prostřednictvím


Operators.( << )<'T2,'T3,'T1> – funkce (F#)

Composes dvě funkce, funkce vpravo nejdříve použita.

Cesta k oboru názvů nebo modul: Microsoft.FSharp.Core.Operators

Sestavení: FSharp.Core (v FSharp.Core.dll)

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

// Usage:
func2 << func1

Parametry

  • func2
    Typ:'T2 -> 'T3

    Druhá funkce použít.

  • func1
    Typ:'T1 -> 'T2

    První funkce použít.

Vrácená hodnota

Složení vstupní funkce.

Poznámky

Tento operátor je označována jako zpětně nebo zpětné složení operátor.

Příklad

Následující příklad znázorňuje použití operátoru zpětné složení (<<).

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")
  

Platformy

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

Informace o verzi

F# základní verze knihovny

Podporovány: 2.0, 4.0, přenosné

Viz také

Referenční dokumentace

Core.Operators – modul (F#)

Microsoft.FSharp.Core – obor názvů (F#)