|
IKVM11
11
Java SE 11 Virtual Machine for .NET
|
Implementation of Function that forwards to a Func<T, TResult>. More...
Public Member Functions | |
| DelegateFunction (Func< TArg, TResult > func) | |
| Initializes a new instance. | |
| Function | andThen (Function after) |
| Function | compose (Function before) |
| object? | apply (object t) |
| DelegateFunction (Func< TArg1, TArg2, TResult > func) | |
| Initializes a new instance. | |
| BiFunction | andThen (Function after) |
| object? | apply (object t1, object t2) |
Implementation of Function that forwards to a Func<T, TResult>.
| TArg | |
| TResult |
Definition at line 48 of file DelegateFunction.cs.
| java.util.function.DelegateFunction< TArg1, TArg2, TResult >.DelegateFunction | ( | Func< TArg, TResult > | func | ) |
Initializes a new instance.
| func |
| ArgumentNullException |
Definition at line 21 of file DelegateFunction.cs.
| java.util.function.DelegateFunction< TArg1, TArg2, TResult >.DelegateFunction | ( | Func< TArg1, TArg2, TResult > | func | ) |
Initializes a new instance.
| func |
| ArgumentNullException |
Definition at line 58 of file DelegateFunction.cs.
| Function java.util.function.DelegateFunction< TArg1, TArg2, TResult >.andThen | ( | Function | after | ) |
Definition at line 26 of file DelegateFunction.cs.
| BiFunction java.util.function.DelegateFunction< TArg1, TArg2, TResult >.andThen | ( | Function | after | ) |
Definition at line 63 of file DelegateFunction.cs.
| object? java.util.function.DelegateFunction< TArg1, TArg2, TResult >.apply | ( | object | t | ) |
Definition at line 36 of file DelegateFunction.cs.
| object? java.util.function.DelegateFunction< TArg1, TArg2, TResult >.apply | ( | object | t1, |
| object | t2 ) |
Definition at line 68 of file DelegateFunction.cs.
| Function java.util.function.DelegateFunction< TArg1, TArg2, TResult >.compose | ( | Function | before | ) |
Definition at line 31 of file DelegateFunction.cs.