Header menu logo FSharp.Core

FSharpFunc<'T1, 'T2, 'T3, 'T4, 'T5, 'U> Type

The CLI type used to represent F# function values that accept five curried arguments 
 without intervening execution. This type should not typically used directly from 
 either F# code or from other CLI languages.

Constructors

Constructor Description

FSharpFunc()

Full Usage: FSharpFunc()

Returns: FSharpFunc<'T1, 'T2, 'T3, 'T4, 'T5, 'U> The optimized function.

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

Returns: FSharpFunc<'T1, 'T2, 'T3, 'T4, 'T5, 'U>

The optimized function.

Instance members

Instance member Description

this.Invoke

Full Usage: this.Invoke

Parameters:
    arg1 : 'T1 - The first arg.
    arg2 : 'T2 - The second arg.
    arg3 : 'T3 - The third arg.
    arg4 : 'T4 - The fourth arg.
    arg5 : 'T5 - The fifth arg.

Returns: 'U The function result.
Modifiers: abstract

Invoke an F# first class function value that accepts five curried arguments without intervening execution

arg1 : 'T1

The first arg.

arg2 : 'T2

The second arg.

arg3 : 'T3

The third arg.

arg4 : 'T4

The fourth arg.

arg5 : 'T5

The fifth arg.

Returns: 'U

The function result.

Static members

Static member Description

FSharpFunc.Adapt(func)

Full Usage: FSharpFunc.Adapt(func)

Parameters:
    func : 'T1 -> 'T2 -> 'T3 -> 'T4 -> 'T5 -> 'U - The input function.

Returns: FSharpFunc<'T1, 'T2, 'T3, 'T4, 'T5, 'U> The optimized function.

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

func : 'T1 -> 'T2 -> 'T3 -> 'T4 -> 'T5 -> 'U

The input function.

Returns: FSharpFunc<'T1, 'T2, 'T3, 'T4, 'T5, 'U>

The optimized function.

Type something to start searching.