| Package | Description |
|---|---|
| eu.lunisolar.magma.func.function.from | |
| eu.lunisolar.magma.func.operator.binary | |
| eu.lunisolar.magma.func.predicate |
| Modifier and Type | Interface and Description |
|---|---|
static interface |
LBiFltFunction.LFlt1Flt0Func<R>
Permutation of LBiFltFunction for method references.
|
| Modifier and Type | Class and Description |
|---|---|
static class |
LBiFltFunction.LBiFltFunctionSingle<R> |
| Modifier and Type | Method and Description |
|---|---|
default LBiFltFunction<R> |
LBiFltFunction.after(LConsumer<? super R> after) |
static <R> LBiFltFunction<R> |
LBiFltFunction.apply1st(LFltFunction<R> func)
Captures single parameter function into this interface where only 1st parameter will be used.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.apply2nd(LFltFunction<R> func)
Captures single parameter function into this interface where only 2nd parameter will be used.
|
default LBiFltFunction<R> |
LBiFltFunction.before(LBiFltConsumer before) |
static <R> LBiFltFunction<R> |
LBiFltFunction.biFltFunc(LBiFltFunction<R> lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static <R> LBiFltFunction<R> |
LBiFltFunction.biFltFuncThrowing(ExF<Throwable> exF) |
static <R> LBiFltFunction<R> |
LBiFltFunction.biFltFuncThrowing(String message,
ExMF<Throwable> exF) |
default <V2> LBiFltFunction<V2> |
LBiFltFunction.cast()
Cast that replace generics.
|
static <V2,R> LBiFltFunction<V2> |
LBiFltFunction.cast(LBiFltFunction<R> function)
Cast that replace generics.
|
default LBiFltFunction<R> |
LBiFltFunction.compose(LFltUnaryOperator before1,
LFltUnaryOperator before2)
Allows to manipulate the domain of the function.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.composed(LFltUnaryOperator before1,
LFltUnaryOperator before2,
LBiFltFunction<R> after) |
static <R> LBiFltFunction<R> |
LBiFltFunction.constant(R r)
Creates function that always returns the same value.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.failSafe(LBiFltFunction<R> func,
LBiFltFunction<R> failSafe) |
default LBiFltFunction<R> |
LBiFltFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
default LBiFltFunction<R> |
LBiFltFunction.nonNullable()
Converts to function that makes sure that the result is not null.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.recursive(LFunction<LBiFltFunction<R>,LBiFltFunction<R>> selfLambda) |
static <R> LBiFltFunction<R> |
LBiFltFunction.safe()
Safe instance.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.safe(LBiFltFunction<R> other)
Safe wrapping.
|
default <V> LBiFltFunction<V> |
LBiFltFunction.then(LFunction<? super R,? extends V> after)
Combines two functions together in a order.
|
default LBiFltFunction<R> |
LBiFltFunction.trying(ExWF<RuntimeException> exF) |
default LBiFltFunction<R> |
LBiFltFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LBiFltFunction<R> |
LBiFltFunction.tryingThen(LFunction<Throwable,R> handler) |
static <R> LBiFltFunction<R> |
LBiFltFunction.uncurry(LFltFunction<LFltFunction<R>> func) |
default LBiFltFunction |
LBiFltFunction.untyped()
Cast that removes generics.
|
LBiFltFunction<R> |
LBiFltFunction.LBiFltFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static <R> LSupplier<LBiFltFunction<R>> |
LBiFltFunction.safeSupplier()
Safe instance supplier.
|
static <R> LSupplier<LBiFltFunction<R>> |
LBiFltFunction.safeSupplier(LSupplier<LBiFltFunction<R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static <R> LBiFltFunction<R> |
LBiFltFunction.biFltFunc(LBiFltFunction<R> lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static <R> R |
LBiFltFunction.call(float a1,
float a2,
LBiFltFunction<R> lambda) |
static <V2,R> LBiFltFunction<V2> |
LBiFltFunction.cast(LBiFltFunction<R> function)
Cast that replace generics.
|
static <R> LBiFltFunction<R> |
LBiFltFunction.composed(LFltUnaryOperator before1,
LFltUnaryOperator before2,
LBiFltFunction<R> after) |
static <V1,V2,R> LBiFunction<V1,V2,R> |
LBiFltFunction.composed(LToFltFunction<? super V1> before1,
LToFltFunction<? super V2> before2,
LBiFltFunction<R> after) |
static <R> LBiFltFunction<R> |
LBiFltFunction.failSafe(LBiFltFunction<R> func,
LBiFltFunction<R> failSafe) |
static <R> LBiFltFunction<R> |
LBiFltFunction.failSafe(LBiFltFunction<R> func,
LBiFltFunction<R> failSafe) |
default R |
LBiFltFunction.failSafeApply(float a1,
float a2,
LBiFltFunction<R> failSafe) |
static <R> R |
LBiFltFunction.failSafeApply(float a1,
float a2,
LBiFltFunction<R> func,
LBiFltFunction<R> failSafe) |
static <R> R |
LBiFltFunction.failSafeApply(float a1,
float a2,
LBiFltFunction<R> func,
LBiFltFunction<R> failSafe) |
static <R> void |
LBiFltFunction.fromTill(int min_i,
int max_i,
float a1,
float a2,
LBiFltFunction<R> func)
From-To.
|
static <R> void |
LBiFltFunction.fromTo(int min_i,
int max_i,
float a1,
float a2,
LBiFltFunction<R> func)
From-To.
|
static <R> R |
LBiFltFunction.handlingApply(float a1,
float a2,
LBiFltFunction<R> func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static <R> LFltFunction<R> |
LBiFltFunction.lShrinked(LFltUnaryOperator left,
LBiFltFunction<R> func) |
static <R> LFltFunction<R> |
LBiFltFunction.lShrinkedc(float a1,
LBiFltFunction<R> func) |
static <R> LFltFunction<R> |
LBiFltFunction.rShrinked(LFltUnaryOperator right,
LBiFltFunction<R> func) |
static <R> LFltFunction<R> |
LBiFltFunction.rShrinkedc(float a2,
LBiFltFunction<R> func) |
static <R> LBiFltFunction<R> |
LBiFltFunction.safe(LBiFltFunction<R> other)
Safe wrapping.
|
static <R> void |
LBiFltFunction.times(int max_i,
float a1,
float a2,
LBiFltFunction<R> func)
From-To.
|
static <R> R |
LBiFltFunction.tryApply(float a1,
float a2,
LBiFltFunction<R> func) |
static <R> R |
LBiFltFunction.tryApply(float a1,
float a2,
LBiFltFunction<R> func,
ExWF<RuntimeException> exF) |
static <R> R |
LBiFltFunction.tryApply(float a1,
float a2,
LBiFltFunction<R> func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static <R> R |
LBiFltFunction.tryApplyThen(float a1,
float a2,
LBiFltFunction<R> func,
LFunction<Throwable,R> handler) |
| Modifier and Type | Method and Description |
|---|---|
static <R> LBiFltFunction<R> |
LBiFltFunction.recursive(LFunction<LBiFltFunction<R>,LBiFltFunction<R>> selfLambda) |
static <R> LBiFltFunction<R> |
LBiFltFunction.recursive(LFunction<LBiFltFunction<R>,LBiFltFunction<R>> selfLambda) |
static <R> LSupplier<LBiFltFunction<R>> |
LBiFltFunction.safeSupplier(LSupplier<LBiFltFunction<R>> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LBiFltFunction<V> |
LFltBinaryOperator.then(LFltFunction<? extends V> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default <V> LBiFltFunction<V> |
LBiFltPredicate.boolToBiFltFunc(LBoolFunction<? extends V> after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.