| Modifier and Type | Interface and Description |
|---|---|
static class |
FunctionType.Instance |
static class |
FunctionType.ReaderInstance<R> |
| Modifier and Type | Method and Description |
|---|---|
B |
apply(A a)
Applies this function to the input.
|
static <A,B> (A) -> B |
create((? super A) -> ? extends B function)
Converts a
Function to a FunctionType. |
static <A,B> (A) -> B create((? super A) -> ? extends B function)
Function to a FunctionType.A - The input type.B - The output type.function - The function.function, as an instance of FunctionType.