Package | Description |
---|---|
io.vavr |
Beside
API the io.vavr package contains core types like (Checked)Functions and Tuples. |
io.vavr.control |
Modifier and Type | Method and Description |
---|---|
default <V> Function3<T1,T2,T3,V> |
Function3.andThen(Function<? super R,? extends V> after)
Returns a composed function that first applies this Function3 to the given argument and then applies
Function
after to the result. |
default Function3<T2,T3,T4,R> |
Function4.apply(T1 t1)
Applies this function partially to one argument.
|
default Function3<T3,T4,T5,R> |
Function5.apply(T1 t1,
T2 t2)
Applies this function partially to two arguments.
|
default Function3<T4,T5,T6,R> |
Function6.apply(T1 t1,
T2 t2,
T3 t3)
Applies this function partially to three arguments.
|
default Function3<T5,T6,T7,R> |
Function7.apply(T1 t1,
T2 t2,
T3 t3,
T4 t4)
Applies this function partially to 4 arguments.
|
default Function3<T6,T7,T8,R> |
Function8.apply(T1 t1,
T2 t2,
T3 t3,
T4 t4,
T5 t5)
Applies this function partially to 5 arguments.
|
static <T1,T2,T3,R> |
Function3.constant(R value)
Returns a function that always returns the constant
value that you give in parameter.
|
static <T1,T2,T3,R> |
API.Function(Function3<T1,T2,T3,R> methodReference)
Alias for
of(Function3) |
static <T1,T2,T3,R> |
CheckedFunction3.lift(CheckedFunction3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Option result. |
static <T1,T2,T3,R> |
Function3.lift(Function3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Option result. |
static <T1,T2,T3,R> |
CheckedFunction3.liftTry(CheckedFunction3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Try result. |
static <T1,T2,T3,R> |
Function3.liftTry(Function3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Try result. |
default Function3<T1,T2,T3,R> |
Function3.memoized()
Returns a memoizing version of this function, which computes the return value for given arguments only one time.
|
static <T1,T2,T3,R> |
Function3.narrow(Function3<? super T1,? super T2,? super T3,? extends R> f)
Narrows the given
Function3<? super T1, ? super T2, ? super T3, ? extends R> to Function3<T1, T2, T3, R> |
static <T1,T2,T3,R> |
Function3.of(Function3<T1,T2,T3,R> methodReference)
|
default Function3<T1,T2,T3,R> |
CheckedFunction3.recover(Function<? super Throwable,? extends Function3<? super T1,? super T2,? super T3,? extends R>> recover)
Return a composed function that first applies this CheckedFunction3 to the given arguments and in case of throwable
try to get value from
recover function with same arguments and throwable information. |
default Function3<T3,T2,T1,R> |
Function3.reversed()
Returns a reversed version of this function.
|
default Function3<T1,T2,T3,R> |
CheckedFunction3.unchecked()
Returns an unchecked function that will sneaky throw if an exceptions occurs when applying the function.
|
static <T1,T2,T3,R> |
API.unchecked(CheckedFunction3<T1,T2,T3,R> f)
Alias for
CheckedFunction3.unchecked() |
Modifier and Type | Method and Description |
---|---|
<U> U |
Tuple3.apply(Function3<? super T1,? super T2,? super T3,? extends U> f)
Transforms this tuple to an object of type U.
|
static <T,T1,T2,T3,R> |
API.Case(API.Match.Pattern3<T,T1,T2,T3> pattern,
Function3<? super T1,? super T2,? super T3,? extends R> f) |
static <T1,T2,T3,R> |
API.Function(Function3<T1,T2,T3,R> methodReference)
Alias for
of(Function3) |
static <T1,T2,T3,R> |
Function3.lift(Function3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Option result. |
static <T1,T2,T3,R> |
Function3.liftTry(Function3<? super T1,? super T2,? super T3,? extends R> partialFunction)
Lifts the given
partialFunction into a total function that returns an Try result. |
<U1,U2,U3> Tuple3<U1,U2,U3> |
Tuple3.map(Function3<? super T1,? super T2,? super T3,Tuple3<U1,U2,U3>> mapper)
Maps the components of this tuple using a mapper function.
|
static <T1,T2,T3,R> |
Function3.narrow(Function3<? super T1,? super T2,? super T3,? extends R> f)
Narrows the given
Function3<? super T1, ? super T2, ? super T3, ? extends R> to Function3<T1, T2, T3, R> |
static <T1,T2,T3,R> |
Function3.of(Function3<T1,T2,T3,R> methodReference)
|
<R> Iterator<R> |
API.For3.yield(Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Iterables.
|
<R> Option<R> |
API.For3Option.yield(Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Options.
|
<R> Future<R> |
API.For3Future.yield(Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Futures.
|
<R> Try<R> |
API.For3Try.yield(Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Trys.
|
<R> List<R> |
API.For3List.yield(Function3<? super T1,? super T2,? super T3,? extends R> f)
Yields a result for elements of the cross product of the underlying Lists.
|
Modifier and Type | Method and Description |
---|---|
default Function3<T1,T2,T3,R> |
CheckedFunction3.recover(Function<? super Throwable,? extends Function3<? super T1,? super T2,? super T3,? extends R>> recover)
Return a composed function that first applies this CheckedFunction3 to the given arguments and in case of throwable
try to get value from
recover function with same arguments and throwable information. |
Modifier and Type | Method and Description |
---|---|
<R> Validation<Seq<E>,R> |
Validation.Builder3.ap(Function3<T1,T2,T3,R> f) |
Copyright © 2021. All Rights Reserved.