Uses of Interface
io.vavr.Function8
-
Packages that use Function8 Package Description io.vavr BesideAPI
the io.vavr package contains core types like (Checked)Functions and Tuples.io.vavr.control -
-
Uses of Function8 in io.vavr
Fields in io.vavr declared as Function8 Modifier and Type Field Description private Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R>
API.Match.Case8. f
Methods in io.vavr that return Function8 Modifier and Type Method Description default <V> Function8<T1,T2,T3,T4,T5,T6,T7,T8,V>
Function8. andThen(java.util.function.Function<? super R,? extends V> after)
Returns a composed function that first applies this Function8 to the given argument and then applies Functionafter
to the result.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>Function8. constant(R value)
Returns a function that always returns the constant value that you give in parameter.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>API. Function(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> methodReference)
Alias forof(Function8)
static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Option<R>>CheckedFunction8. lift(CheckedFunction8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anOption
result.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Option<R>>Function8. lift(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anOption
result.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Try<R>>CheckedFunction8. liftTry(CheckedFunction8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anTry
result.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Try<R>>Function8. liftTry(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anTry
result.default Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8. 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,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>Function8. narrow(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Narrows the givenFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>
toFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>
static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>Function8. of(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> methodReference)
default Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>
CheckedFunction8. recover(java.util.function.Function<? super java.lang.Throwable,? extends Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R>> recover)
Return a composed function that first applies this CheckedFunction8 to the given arguments and in case of throwable try to get value fromrecover
function with same arguments and throwable information.default Function8<T8,T7,T6,T5,T4,T3,T2,T1,R>
Function8. reversed()
Returns a reversed version of this function.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>API. unchecked(CheckedFunction8<T1,T2,T3,T4,T5,T6,T7,T8,R> f)
Alias forCheckedFunction8.unchecked()
default Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>
CheckedFunction8. unchecked()
Returns an unchecked function that will sneaky throw if an exceptions occurs when applying the function.Methods in io.vavr with parameters of type Function8 Modifier and Type Method Description <U> U
Tuple8. apply(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends U> f)
Transforms this tuple to an object of type U.static <T,T1,T2,T3,T4,T5,T6,T7,T8,R>
API.Match.Case<T,R>API. Case(API.Match.Pattern8<T,T1,T2,T3,T4,T5,T6,T7,T8> pattern, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>API. Function(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> methodReference)
Alias forof(Function8)
static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Option<R>>Function8. lift(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anOption
result.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,Try<R>>Function8. liftTry(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> partialFunction)
Lifts the givenpartialFunction
into a total function that returns anTry
result.<U1,U2,U3,U4,U5,U6,U7,U8>
Tuple8<U1,U2,U3,U4,U5,U6,U7,U8>Tuple8. map(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,Tuple8<U1,U2,U3,U4,U5,U6,U7,U8>> mapper)
Maps the components of this tuple using a mapper function.static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>Function8. narrow(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Narrows the givenFunction8<? super T1, ? super T2, ? super T3, ? super T4, ? super T5, ? super T6, ? super T7, ? super T8, ? extends R>
toFunction8<T1, T2, T3, T4, T5, T6, T7, T8, R>
static <T1,T2,T3,T4,T5,T6,T7,T8,R>
Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>Function8. of(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> methodReference)
<R> Iterator<R>
API.For8. yield(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Yields a result for elements of the cross product of the underlying Iterables.<R> Future<R>
API.For8Future. yield(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Yields a result for elements of the cross product of the underlying Futures.<R> List<R>
API.For8List. yield(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Yields a result for elements of the cross product of the underlying Lists.<R> Option<R>
API.For8Option. yield(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Yields a result for elements of the cross product of the underlying Options.<R> Try<R>
API.For8Try. yield(Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
Yields a result for elements of the cross product of the underlying Trys.Method parameters in io.vavr with type arguments of type Function8 Modifier and Type Method Description default Function8<T1,T2,T3,T4,T5,T6,T7,T8,R>
CheckedFunction8. recover(java.util.function.Function<? super java.lang.Throwable,? extends Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R>> recover)
Return a composed function that first applies this CheckedFunction8 to the given arguments and in case of throwable try to get value fromrecover
function with same arguments and throwable information.Constructors in io.vavr with parameters of type Function8 Constructor Description Case8(API.Match.Pattern8<T,T1,T2,T3,T4,T5,T6,T7,T8> pattern, Function8<? super T1,? super T2,? super T3,? super T4,? super T5,? super T6,? super T7,? super T8,? extends R> f)
-
Uses of Function8 in io.vavr.control
Methods in io.vavr.control with parameters of type Function8 Modifier and Type Method Description <R> Validation<Seq<E>,R>
Validation.Builder8. ap(Function8<T1,T2,T3,T4,T5,T6,T7,T8,R> f)
-