Share via


OptimizedClosures.FSharpFunc<'T1,'T2,'U> Class (F#)

The .NET Framework type used to represent F# function values that accept two iterated (curried) arguments without intervening execution. This type should not typically used directly from either F# code or from other .NET Framework languages.

Namespace/Module Path: Microsoft.FSharp.Core.OptimizedClosures

Assembly: FSharp.Core (in FSharp.Core.dll)

[<AbstractClass>]
type FSharpFunc<'T1,'T2,'U> =
 class
  new FSharpFunc : unit -> FSharpFunc<'T1,'T2,'U>
  static member FSharpFunc.Adapt : ('T1 -> 'T2 -> 'U) -> FSharpFunc<'T1,'T2,'U>
  abstract this.Invoke : FSharpFunc<'T1,'T2,'U> -> 'T1 * 'T2 -> 'U
 end

Constructors

Member

Description

new

Construct an optimized function value that can accept two curried arguments without intervening execution.

Instance Members

Member

Description

Invoke

Invoke the optimized function value with two curried arguments

Static Members

Member

Description

Adapt

Adapt an F# first class function value to be an optimized function value that can accept two curried arguments without intervening execution.

Platforms

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

Version Information

F# Core Library Versions

Supported in: 2.0, 4.0, Portable

See Also

Reference

Core.OptimizedClosures Module (F#)