| 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 |
LObjIntLongFunction.LIntLongObjFunc<T,R>
Permutation of LObjIntLongFunction for method references.
|
static interface |
LObjIntLongFunction.LIntObjLongFunc<T,R>
Permutation of LObjIntLongFunction for method references.
|
static interface |
LObjIntLongFunction.LLongIntObjFunc<T,R>
Permutation of LObjIntLongFunction for method references.
|
static interface |
LObjIntLongFunction.LLongObjIntFunc<T,R>
Permutation of LObjIntLongFunction for method references.
|
static interface |
LObjIntLongFunction.LObjLongIntFunc<T,R>
Permutation of LObjIntLongFunction for method references.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
LObjIntLongFunction.LObjIntLongFunctionSingle<T,R> |
| Modifier and Type | Method and Description |
|---|---|
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.after(LConsumer<? super R> after) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.apply1st(LFunction<T,R> func)
Captures single parameter function into this interface where only 1st parameter will be used.
|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.apply2nd(LIntFunction<R> func)
Captures single parameter function into this interface where only 2nd parameter will be used.
|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.apply3rd(LLongFunction<R> func)
Captures single parameter function into this interface where only 3rd parameter will be used.
|
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.before(LTieLongConsumer<? super T> before) |
default <V2,V3> LObjIntLongFunction<V2,V3> |
LObjIntLongFunction.cast()
Cast that replace generics.
|
static <V2,V3,T,R> |
LObjIntLongFunction.cast(LObjIntLongFunction<T,R> function)
Cast that replace generics.
|
default <V1> LObjIntLongFunction<V1,R> |
LObjIntLongFunction.compose(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LLongUnaryOperator before3)
Allows to manipulate the domain of the function.
|
static <V1,T,R> LObjIntLongFunction<V1,R> |
LObjIntLongFunction.composed(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LLongUnaryOperator before3,
LObjIntLongFunction<T,R> after) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.constant(R r)
Creates function that always returns the same value.
|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.failSafe(LObjIntLongFunction<T,R> func,
LObjIntLongFunction<T,R> failSafe) |
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.nonNullable()
Converts to function that makes sure that the result is not null.
|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.objIntLongFunc(LObjIntLongFunction<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> LObjIntLongFunction<T,R> |
LObjIntLongFunction.objIntLongFuncThrowing(ExF<Throwable> exF) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.objIntLongFuncThrowing(String message,
ExMF<Throwable> exF) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.recursive(LFunction<LObjIntLongFunction<T,R>,LObjIntLongFunction<T,R>> selfLambda) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.safe()
Safe instance.
|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.safe(LObjIntLongFunction<T,R> other)
Safe wrapping.
|
default <V> LObjIntLongFunction<T,V> |
LObjIntLongFunction.then(LFunction<? super R,? extends V> after)
Combines two functions together in a order.
|
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.trying(ExWF<RuntimeException> exF) |
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LObjIntLongFunction<T,R> |
LObjIntLongFunction.tryingThen(LFunction<Throwable,R> handler) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.uncurry(LFunction<T,LIntFunction<LLongFunction<R>>> func) |
default LObjIntLongFunction |
LObjIntLongFunction.untyped()
Cast that removes generics.
|
LObjIntLongFunction<T,R> |
LObjIntLongFunction.LObjIntLongFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static <T,R> LSupplier<LObjIntLongFunction<T,R>> |
LObjIntLongFunction.safeSupplier()
Safe instance supplier.
|
static <T,R> LSupplier<LObjIntLongFunction<T,R>> |
LObjIntLongFunction.safeSupplier(LSupplier<LObjIntLongFunction<T,R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static <T,R> R |
LObjIntLongFunction.call(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> lambda) |
static <V2,V3,T,R> |
LObjIntLongFunction.cast(LObjIntLongFunction<T,R> function)
Cast that replace generics.
|
static <V1,T,R> LObjIntLongFunction<V1,R> |
LObjIntLongFunction.composed(LFunction<? super V1,? extends T> before1,
LIntUnaryOperator before2,
LLongUnaryOperator before3,
LObjIntLongFunction<T,R> after) |
static <V1,V2,V3,T,R> |
LObjIntLongFunction.composed(LFunction<? super V1,? extends T> before1,
LToIntFunction<? super V2> before2,
LToLongFunction<? super V3> before3,
LObjIntLongFunction<T,R> after) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.failSafe(LObjIntLongFunction<T,R> func,
LObjIntLongFunction<T,R> failSafe) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.failSafe(LObjIntLongFunction<T,R> func,
LObjIntLongFunction<T,R> failSafe) |
default R |
LObjIntLongFunction.failSafeApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> failSafe) |
static <T,R> R |
LObjIntLongFunction.failSafeApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
LObjIntLongFunction<T,R> failSafe) |
static <T,R> R |
LObjIntLongFunction.failSafeApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
LObjIntLongFunction<T,R> failSafe) |
static <T,R> void |
LObjIntLongFunction.fromTill(int min_i,
int max_i,
T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func)
From-To.
|
static <T,R> void |
LObjIntLongFunction.fromTo(int min_i,
int max_i,
T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func)
From-To.
|
static <T,R> R |
LObjIntLongFunction.handlingApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.objIntLongFunc(LObjIntLongFunction<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> LObjIntLongFunction<T,R> |
LObjIntLongFunction.safe(LObjIntLongFunction<T,R> other)
Safe wrapping.
|
static <T,R> void |
LObjIntLongFunction.times(int max_i,
T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func)
From-To.
|
static <T,R> R |
LObjIntLongFunction.tryApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func) |
static <T,R> R |
LObjIntLongFunction.tryApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
ExWF<RuntimeException> exF) |
static <T,R> R |
LObjIntLongFunction.tryApply(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static <T,R> R |
LObjIntLongFunction.tryApplyThen(T a1,
int a2,
long a3,
LObjIntLongFunction<T,R> func,
LFunction<Throwable,R> handler) |
| Modifier and Type | Method and Description |
|---|---|
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.recursive(LFunction<LObjIntLongFunction<T,R>,LObjIntLongFunction<T,R>> selfLambda) |
static <T,R> LObjIntLongFunction<T,R> |
LObjIntLongFunction.recursive(LFunction<LObjIntLongFunction<T,R>,LObjIntLongFunction<T,R>> selfLambda) |
static <T,R> LSupplier<LObjIntLongFunction<T,R>> |
LObjIntLongFunction.safeSupplier(LSupplier<LObjIntLongFunction<T,R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LObjIntLongFunction<T,V> |
LTieLongFunction.then(LIntFunction<? extends V> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LObjIntLongFunction<T,V> |
LObjIntLongPredicate.boolToObjIntLongFunc(LBoolFunction<? extends V> after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.