Uses of Interface
io.vavr.CheckedFunction6
Packages that use CheckedFunction6
Package
Description
Beside
API
the io.vavr package contains core types like (Checked)Functions and Tuples.-
Uses of CheckedFunction6 in io.vavr
Methods in io.vavr that return CheckedFunction6Modifier and TypeMethodDescriptionCheckedFunction6.andThen
(CheckedFunction1<? super R, ? extends V> after) Returns a composed function that first applies this CheckedFunction6 to the given argument and then applies CheckedFunction1after
to the result.Applies this function partially to one argument.Applies this function partially to two arguments.static <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> API.CheckedFunction
(CheckedFunction6<T1, T2, T3, T4, T5, T6, R> methodReference) Alias forof(CheckedFunction6)
static <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> CheckedFunction6.constant
(R value) Returns a function that always returns the constant value that you give in parameter.CheckedFunction6.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, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> CheckedFunction6.narrow
(CheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> f) Narrows the givenCheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>
toCheckedFunction6<T1, T2, T3, T4, T5, T6, R>
static <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> CheckedFunction6.of
(CheckedFunction6<T1, T2, T3, T4, T5, T6, R> methodReference) Creates aCheckedFunction6
based on method reference lambda expression Examples (w.l.o.g. referring to Function1):CheckedFunction6.reversed()
Returns a reversed version of this function.Methods in io.vavr with parameters of type CheckedFunction6Modifier and TypeMethodDescriptionstatic <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> API.CheckedFunction
(CheckedFunction6<T1, T2, T3, T4, T5, T6, R> methodReference) Alias forof(CheckedFunction6)
CheckedFunction6.lift
(CheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> partialFunction) Lifts the givenpartialFunction
into a total function that returns anOption
result.CheckedFunction6.liftTry
(CheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> partialFunction) Lifts the givenpartialFunction
into a total function that returns anTry
result.static <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> CheckedFunction6.narrow
(CheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R> f) Narrows the givenCheckedFunction6<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? extends R>
toCheckedFunction6<T1, T2, T3, T4, T5, T6, R>
static <T1,
T2, T3, T4, T5, T6, R>
CheckedFunction6<T1, T2, T3, T4, T5, T6, R> CheckedFunction6.of
(CheckedFunction6<T1, T2, T3, T4, T5, T6, R> methodReference) Creates aCheckedFunction6
based on method reference lambda expression Examples (w.l.o.g. referring to Function1):static <T1,
T2, T3, T4, T5, T6, R>
Function6<T1, T2, T3, T4, T5, T6, R> API.unchecked
(CheckedFunction6<T1, T2, T3, T4, T5, T6, R> f) Alias forunchecked()
-
Uses of CheckedFunction6 in io.vavr.control
Methods in io.vavr.control with parameters of type CheckedFunction6