default <V> CheckedFunction2<T1,T2,V> |
CheckedFunction2.andThen(@NonNull CheckedFunction1<? super R,? extends V> after) |
Returns a composed function that first applies this CheckedFunction2 to the given argument and then applies
CheckedFunction1 after to the result.
|
default CheckedFunction2<T2,T3,R> |
CheckedFunction3.apply(T1 t1) |
Applies this function partially to one argument.
|
default CheckedFunction2<T3,T4,R> |
CheckedFunction4.apply(T1 t1,
T2 t2) |
Applies this function partially to two arguments.
|
default CheckedFunction2<T4,T5,R> |
CheckedFunction5.apply(T1 t1,
T2 t2,
T3 t3) |
Applies this function partially to three arguments.
|
default CheckedFunction2<T5,T6,R> |
CheckedFunction6.apply(T1 t1,
T2 t2,
T3 t3,
T4 t4) |
Applies this function partially to 4 arguments.
|
default CheckedFunction2<T6,T7,R> |
CheckedFunction7.apply(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5) |
Applies this function partially to 5 arguments.
|
default CheckedFunction2<T7,T8,R> |
CheckedFunction8.apply(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5,
T6 t6) |
Applies this function partially to 6 arguments.
|
static <T1,T2,R> CheckedFunction2<T1,T2,R> |
API.CheckedFunction(CheckedFunction2<T1,T2,R> methodReference) |
|
default <S> CheckedFunction2<S,T2,R> |
CheckedFunction2.compose1(@NonNull Function1<? super S,? extends T1> before) |
Returns a composed function that first applies the Function before to the
1st argument and then applies this CheckedFunction2 to the result and the other argument.
|
default <S> CheckedFunction2<T1,S,R> |
CheckedFunction2.compose2(@NonNull Function1<? super S,? extends T2> before) |
Returns a composed function that first applies the Function before to the
2nd argument and then applies this CheckedFunction2 to the result and the other argument.
|
static <T1,T2,R> CheckedFunction2<T1,T2,R> |
CheckedFunction2.constant(R value) |
Returns a function that always returns the constant
value that you give in parameter.
|
default CheckedFunction2<T1,T2,R> |
CheckedFunction2.memoized() |
Returns a memoizing version of this function, which computes the return value for given arguments only one time.
|
static <T1,T2,R> CheckedFunction2<T1,T2,R> |
CheckedFunction2.narrow(CheckedFunction2<? super T1,? super T2,? extends R> f) |
Narrows the given CheckedFunction2<? super T1, ? super T2, ? extends R> to CheckedFunction2<T1, T2, R>
|
static <T1,T2,R> CheckedFunction2<T1,T2,R> |
CheckedFunction2.of(@NonNull CheckedFunction2<T1,T2,R> methodReference) |
|
default CheckedFunction2<T2,T1,R> |
CheckedFunction2.reversed() |
Returns a reversed version of this function.
|