The .NET 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 languages.
Full Type Signature
[<AbstractClassAttribute ()>]
type FastFunc2<'T,'U,'V> = class
inherit FastFunc<'T,('U -> 'V)>
abstract member Invoke : 'T * 'U -> 'V
end
with
new : unit -> FastFunc2<'T,'U,'V>
static member Adapt : ('T -> 'U -> 'V) -> FastFunc2<'T,'U,'V>
end
Instance Members
Member | Description |
member Invoke : 'T * 'U -> 'V | |
Static Members
|