Sdílet prostřednictvím


Operators.( <| )<'T,'U> – funkce (F#)

Použije funkci hodnota, hodnota je na pravé straně funkce na levé straně.

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

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

// Signature:
( <| ) : ('T -> 'U) -> 'T -> 'U

// Usage:
func <| arg1

Parametry

  • func
    Typ:'T -> 'U

    Funkce.

  • arg1
    Typ:'T

    Argument.

Vrácená hodnota

Výsledek funkce.

Poznámky

Funkce je označována jako zpětně nebo zpětného kanálu operátor.

Příklad

Následující příklad ukazuje použití <| operátor.

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

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

// Reverse pipelines require parentheses. 
let result2 :string = append2 <| (append1 <| "abc")
printfn "result2: %A" result2

// Reverse pipelines can be used to eliminate the need for 
// parentheses in some expressions.
raise <| new System.Exception("A failure occurred.")
  

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