The .NET type used to represent F# function values that accept
five iterated (curried) arguments without intervening execution. This type should not
typically used directly from either F# code or from other .NET languages.
Full Type Signature
[<AbstractClassAttribute ()>]
type FastFunc5<'T,'U,'V,'W,'X,'Y> = class
inherit FastFunc<'T,('U -> 'V -> 'W -> 'X -> 'Y)>
abstract member Invoke : 'T * 'U * 'V * 'W * 'X -> 'Y
end
with
new : unit -> FastFunc5<'T,'U,'V,'W,'X,'Y>
end
Instance Members
Member | Description |
member Invoke : 'T * 'U * 'V * 'W * 'X -> 'Y | |
Static Members
|