Udostępnij za pośrednictwem


Podmioty gospodarcze.(< |)< t, "U > Funkcja (F#)

Dotyczy funkcji wartość, wartość na prawo, funkcja po lewej stronie.

Ścieżka obszaru nazw/modułu: Microsoft.FSharp.Core.Operators

Zestaw: FSharp.Core (w FSharp.Core.dll)

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

// Usage:
func <| arg1

Parametry

  • func
    Typ:'T -> 'U

    Funkcja.

  • arg1
    Typ:'T

    Argument.

Wartość zwracana

Wynik funkcji.

Uwagi

Funkcja nazywa się do tyłu lub operator potoku odwrotnej.

Przykład

Poniższy przykład ilustruje użycie <| operatora.

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

Informacje o wersji

F# Core wersji biblioteki

Obsługiwane: 2.0, 4.0, przenośne

Zobacz też

Informacje

Moduł Core.Operators (F#)

Obszar nazw Microsoft.FSharp.Core (F#)