default <V> CheckedFunction5<T1,T2,T3,T4,T5,V> |
CheckedFunction5.andThen(@NonNull CheckedFunction1<? super R,? extends V> after) |
Returns a composed function that first applies this CheckedFunction5 to the given argument and then applies
CheckedFunction1 after to the result.
|
default CheckedFunction5<T2,T3,T4,T5,T6,R> |
CheckedFunction6.apply(T1 t1) |
Applies this function partially to one argument.
|
default CheckedFunction5<T3,T4,T5,T6,T7,R> |
CheckedFunction7.apply(T1 t1,
T2 t2) |
Applies this function partially to two arguments.
|
default CheckedFunction5<T4,T5,T6,T7,T8,R> |
CheckedFunction8.apply(T1 t1,
T2 t2,
T3 t3) |
Applies this function partially to three arguments.
|
static <T1,T2,T3,T4,T5,R> CheckedFunction5<T1,T2,T3,T4,T5,R> |
API.CheckedFunction(CheckedFunction5<T1,T2,T3,T4,T5,R> methodReference) |
|
default <S> CheckedFunction5<S,T2,T3,T4,T5,R> |
CheckedFunction5.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 CheckedFunction5 to the result and the other arguments.
|
default <S> CheckedFunction5<T1,S,T3,T4,T5,R> |
CheckedFunction5.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 CheckedFunction5 to the result and the other arguments.
|
default <S> CheckedFunction5<T1,T2,S,T4,T5,R> |
CheckedFunction5.compose3(@NonNull Function1<? super S,? extends T3> before) |
Returns a composed function that first applies the Function before to the
3rd argument and then applies this CheckedFunction5 to the result and the other arguments.
|
default <S> CheckedFunction5<T1,T2,T3,S,T5,R> |
CheckedFunction5.compose4(@NonNull Function1<? super S,? extends T4> before) |
Returns a composed function that first applies the Function before to the
4th argument and then applies this CheckedFunction5 to the result and the other arguments.
|
default <S> CheckedFunction5<T1,T2,T3,T4,S,R> |
CheckedFunction5.compose5(@NonNull Function1<? super S,? extends T5> before) |
Returns a composed function that first applies the Function before to the
5th argument and then applies this CheckedFunction5 to the result and the other arguments.
|
static <T1,T2,T3,T4,T5,R> CheckedFunction5<T1,T2,T3,T4,T5,R> |
CheckedFunction5.constant(R value) |
Returns a function that always returns the constant
value that you give in parameter.
|
default CheckedFunction5<T1,T2,T3,T4,T5,R> |
CheckedFunction5.memoized() |
Returns a memoizing version of this function, which computes the return value for given arguments only one time.
|
static <T1,T2,T3,T4,T5,R> CheckedFunction5<T1,T2,T3,T4,T5,R> |
CheckedFunction5.narrow(CheckedFunction5<? super T1,? super T2,? super T3,? super T4,? super T5,? extends R> f) |
Narrows the given CheckedFunction5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> to CheckedFunction5<T1, T2, T3, T4, T5, R>
|
static <T1,T2,T3,T4,T5,R> CheckedFunction5<T1,T2,T3,T4,T5,R> |
CheckedFunction5.of(@NonNull CheckedFunction5<T1,T2,T3,T4,T5,R> methodReference) |
|
default CheckedFunction5<T5,T4,T3,T2,T1,R> |
CheckedFunction5.reversed() |
Returns a reversed version of this function.
|