Uses of Interface
io.vavr.CheckedFunction5
Packages that use CheckedFunction5
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.-
Uses of CheckedFunction5 in io.vavr
Methods in io.vavr that return CheckedFunction5Modifier and TypeMethodDescriptionCheckedFunction5.andThen(@NonNull CheckedFunction1<? super R, ? extends V> after) Returns a composed function that first applies this CheckedFunction5 to the given argument and then applies CheckedFunction1afterto the result.Applies this function partially to one argument.Applies this function partially to two arguments.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) Alias forof(CheckedFunction5)Returns a composed function that first applies the Functionbeforeto the 1st argument and then applies this CheckedFunction5 to the result and the other arguments.Returns a composed function that first applies the Functionbeforeto the 2nd argument and then applies this CheckedFunction5 to the result and the other arguments.Returns a composed function that first applies the Functionbeforeto the 3rd argument and then applies this CheckedFunction5 to the result and the other arguments.Returns a composed function that first applies the Functionbeforeto the 4th argument and then applies this CheckedFunction5 to the result and the other arguments.Returns a composed function that first applies the Functionbeforeto 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.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 givenCheckedFunction5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>toCheckedFunction5<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) CheckedFunction5.reversed()Returns a reversed version of this function.Methods in io.vavr with parameters of type CheckedFunction5Modifier and TypeMethodDescriptionstatic <T1,T2, T3, T4, T5, R>
CheckedFunction5<T1, T2, T3, T4, T5, R> API.CheckedFunction(CheckedFunction5<T1, T2, T3, T4, T5, R> methodReference) Alias forof(CheckedFunction5)CheckedFunction5.lift(@NonNull CheckedFunction5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anOptionresult.CheckedFunction5.liftTry(@NonNull CheckedFunction5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anTryresult.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 givenCheckedFunction5<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? extends R>toCheckedFunction5<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) static <T1,T2, T3, T4, T5, R>
Function5<T1, T2, T3, T4, T5, R> API.unchecked(CheckedFunction5<T1, T2, T3, T4, T5, R> f) Alias forunchecked() -
Uses of CheckedFunction5 in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedFunction5