@FunctionalInterface public interface Function1<T1,R> extends Function<T1 ,R>
| Modifier and Type | Method and Description |
|---|---|
R |
apply(T1 v1)
Apply this function to the arguments.
|
default R |
apply(Tuple1
Apply this function to the arguments.
|
default Function0 |
curry(T1 v1)
Partially apply this function to the arguments.
|
default Function0 |
curry(Tuple1
Partially apply this function to the arguments.
|
static <T1 |
from(Function
Convert to this function from a
Function
|
default Function |
toFunction()
Convert this function to a
Function
|