| Package | Description |
|---|---|
| eu.lunisolar.magma.func.function.from | |
| eu.lunisolar.magma.func.function.to | |
| eu.lunisolar.magma.func.predicate |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
LObjIntDblFunction.LDblIntObjFunc<T,R>
Permutation of LObjIntDblFunction for method references.
|
static interface |
LObjIntDblFunction.LDblObjIntFunc<T,R>
Permutation of LObjIntDblFunction for method references.
|
static interface |
LObjIntDblFunction.LIntDblObjFunc<T,R>
Permutation of LObjIntDblFunction for method references.
|
static interface |
LObjIntDblFunction.LIntObjDblFunc<T,R>
Permutation of LObjIntDblFunction for method references.
|
static interface |
LObjIntDblFunction.LObjDblIntFunc<T,R>
Permutation of LObjIntDblFunction for method references.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
LObjIntDblFunction.LObjIntDblFunctionSingle<T,R> |
| Modifier and Type | Method and Description |
|---|---|
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.after(LConsumer<? super R> after) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.apply1st(LFunction<T,R> func)
Captures single parameter function into this interface where only 1st parameter will be used.
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.apply2nd(LIntFunction<R> func)
Captures single parameter function into this interface where only 2nd parameter will be used.
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.apply3rd(LDblFunction<R> func)
Captures single parameter function into this interface where only 3rd parameter will be used.
|
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.before(LTieDblConsumer<? super T> before) |
default <V2,V3> LObjIntDblFunction<V2,V3> |
LObjIntDblFunction.cast()
Cast that replace generics.
|
static <V2,V3,T,R> |
LObjIntDblFunction.cast(LObjIntDblFunction<T,R> function)
Cast that replace generics.
|
default <V1> LObjIntDblFunction<V1,R> |
LObjIntDblFunction.compose(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LDblUnaryOperator before3)
Allows to manipulate the domain of the function.
|
static <V1,T,R> LObjIntDblFunction<V1,R> |
LObjIntDblFunction.composed(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LDblUnaryOperator before3,
LObjIntDblFunction<T,R> after) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.constant(R r)
Creates function that always returns the same value.
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.failSafe(LObjIntDblFunction<T,R> func,
LObjIntDblFunction<T,R> failSafe) |
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.nonNullable()
Converts to function that makes sure that the result is not null.
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.objIntDblFunc(LObjIntDblFunction<T,R> lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.objIntDblFuncThrowing(ExF<Throwable> exF) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.objIntDblFuncThrowing(String message,
ExMF<Throwable> exF) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.recursive(LFunction<LObjIntDblFunction<T,R>,LObjIntDblFunction<T,R>> selfLambda) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.safe()
Safe instance.
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.safe(LObjIntDblFunction<T,R> other)
Safe wrapping.
|
default <V> LObjIntDblFunction<T,V> |
LObjIntDblFunction.then(LFunction<? super R,? extends V> after)
Combines two functions together in a order.
|
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.trying(ExWF<RuntimeException> exF) |
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LObjIntDblFunction<T,R> |
LObjIntDblFunction.tryingThen(LFunction<Throwable,R> handler) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.uncurry(LFunction<T,LIntFunction<LDblFunction<R>>> func) |
default LObjIntDblFunction |
LObjIntDblFunction.untyped()
Cast that removes generics.
|
LObjIntDblFunction<T,R> |
LObjIntDblFunction.LObjIntDblFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static <T,R> LSupplier<LObjIntDblFunction<T,R>> |
LObjIntDblFunction.safeSupplier()
Safe instance supplier.
|
static <T,R> LSupplier<LObjIntDblFunction<T,R>> |
LObjIntDblFunction.safeSupplier(LSupplier<LObjIntDblFunction<T,R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,R> R |
LObjIntDblFunction.call(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> lambda) |
static <V2,V3,T,R> |
LObjIntDblFunction.cast(LObjIntDblFunction<T,R> function)
Cast that replace generics.
|
static <V1,T,R> LObjIntDblFunction<V1,R> |
LObjIntDblFunction.composed(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LDblUnaryOperator before3,
LObjIntDblFunction<T,R> after) |
static <V1,V2,V3,T,R> |
LObjIntDblFunction.composed(LFunction<? super V1,? extends T> before1,
LToIntFunction<? super V2> before2,
LToDblFunction<? super V3> before3,
LObjIntDblFunction<T,R> after) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.failSafe(LObjIntDblFunction<T,R> func,
LObjIntDblFunction<T,R> failSafe) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.failSafe(LObjIntDblFunction<T,R> func,
LObjIntDblFunction<T,R> failSafe) |
default R |
LObjIntDblFunction.failSafeApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> failSafe) |
static <T,R> R |
LObjIntDblFunction.failSafeApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
LObjIntDblFunction<T,R> failSafe) |
static <T,R> R |
LObjIntDblFunction.failSafeApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
LObjIntDblFunction<T,R> failSafe) |
static <T,R> void |
LObjIntDblFunction.fromTill(int min_a2,
int max_a2,
T a1,
double a3,
LObjIntDblFunction<T,R> func)
From-To.
|
static <T,R> void |
LObjIntDblFunction.fromTo(int min_a2,
int max_a2,
T a1,
double a3,
LObjIntDblFunction<T,R> func)
From-To.
|
static <T,R> R |
LObjIntDblFunction.handlingApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.objIntDblFunc(LObjIntDblFunction<T,R> lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.safe(LObjIntDblFunction<T,R> other)
Safe wrapping.
|
static <T,R> void |
LObjIntDblFunction.times(int max_a2,
T a1,
double a3,
LObjIntDblFunction<T,R> func)
From-To.
|
static <T,R> R |
LObjIntDblFunction.tryApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func) |
static <T,R> R |
LObjIntDblFunction.tryApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
ExWF<RuntimeException> exF) |
static <T,R> R |
LObjIntDblFunction.tryApply(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static <T,R> R |
LObjIntDblFunction.tryApplyThen(T a1,
int a2,
double a3,
LObjIntDblFunction<T,R> func,
LFunction<Throwable,R> handler) |
| Modifier and Type | Method and Description |
|---|---|
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.recursive(LFunction<LObjIntDblFunction<T,R>,LObjIntDblFunction<T,R>> selfLambda) |
static <T,R> LObjIntDblFunction<T,R> |
LObjIntDblFunction.recursive(LFunction<LObjIntDblFunction<T,R>,LObjIntDblFunction<T,R>> selfLambda) |
static <T,R> LSupplier<LObjIntDblFunction<T,R>> |
LObjIntDblFunction.safeSupplier(LSupplier<LObjIntDblFunction<T,R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LObjIntDblFunction<T,V> |
LTieDblFunction.then(LIntFunction<? extends V> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LObjIntDblFunction<T,V> |
LObjIntDblPredicate.boolToObjIntDblFunc(LBoolFunction<? extends V> after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.