Uses of Interface
io.vavr.CheckedFunction3
Packages that use CheckedFunction3
Package
Description
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples.-
Uses of CheckedFunction3 in io.vavr
Methods in io.vavr that return CheckedFunction3Modifier and TypeMethodDescriptiondefault <V> CheckedFunction3<T1, T2, T3, V> CheckedFunction3.andThen(@NonNull CheckedFunction1<? super R, ? extends V> after) Returns a composed function that first applies this CheckedFunction3 to the given argument and then applies CheckedFunction1afterto the result.default CheckedFunction3<T2, T3, T4, R> Applies this function partially to one argument.default CheckedFunction3<T3, T4, T5, R> Applies this function partially to two arguments.default CheckedFunction3<T4, T5, T6, R> Applies this function partially to three arguments.default CheckedFunction3<T5, T6, T7, R> Applies this function partially to 4 arguments.default CheckedFunction3<T6, T7, T8, R> Applies this function partially to 5 arguments.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> API.CheckedFunction(CheckedFunction3<T1, T2, T3, R> methodReference) Alias forCheckedFunction3.of(CheckedFunction3)default <S> CheckedFunction3<S, T2, T3, R> Returns a composed function that first applies the Functionbeforeto the 1st argument and then applies this CheckedFunction3 to the result and the other arguments.default <S> CheckedFunction3<T1, S, T3, R> Returns a composed function that first applies the Functionbeforeto the 2nd argument and then applies this CheckedFunction3 to the result and the other arguments.default <S> CheckedFunction3<T1, T2, S, R> Returns a composed function that first applies the Functionbeforeto the 3rd argument and then applies this CheckedFunction3 to the result and the other arguments.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> CheckedFunction3.constant(R value) Returns a function that always returns the constant value that you give in parameter.default CheckedFunction3<T1, T2, T3, R> CheckedFunction3.memoized()Returns a memoizing version of this function, which computes the return value for given arguments only one time.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> CheckedFunction3.narrow(CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> f) Narrows the givenCheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R>toCheckedFunction3<T1, T2, T3, R>static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> CheckedFunction3.of(@NonNull CheckedFunction3<T1, T2, T3, R> methodReference) default CheckedFunction3<T3, T2, T1, R> CheckedFunction3.reversed()Returns a reversed version of this function.Methods in io.vavr with parameters of type CheckedFunction3Modifier and TypeMethodDescriptionstatic <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> API.CheckedFunction(CheckedFunction3<T1, T2, T3, R> methodReference) Alias forCheckedFunction3.of(CheckedFunction3)CheckedFunction3.lift(@NonNull CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anOptionresult.CheckedFunction3.liftTry(@NonNull CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> partialFunction) Lifts the givenpartialFunctioninto a total function that returns anTryresult.static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> CheckedFunction3.narrow(CheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R> f) Narrows the givenCheckedFunction3<? super T1, ? super T2, ? super T3, ? extends R>toCheckedFunction3<T1, T2, T3, R>static <T1,T2, T3, R>
CheckedFunction3<T1, T2, T3, R> CheckedFunction3.of(@NonNull CheckedFunction3<T1, T2, T3, R> methodReference) static <T1,T2, T3, R>
Function3<T1, T2, T3, R> API.unchecked(CheckedFunction3<T1, T2, T3, R> f) Alias forCheckedFunction3.unchecked() -
Uses of CheckedFunction3 in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedFunction3