| Modifier and Type | Class and Description |
|---|---|
static class |
LFltToDblFunction.LFltToDblFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
default LFltToDblFunction |
LFltToDblFunction.compose(LFltUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LFltToDblFunction |
LFltToDblFunction.composed(LFltUnaryOperator before,
LFltToDblFunction after) |
static LFltToDblFunction |
LFltToDblFunction.constant(double r)
Creates function that always returns the same value.
|
static LFltToDblFunction |
LFltToDblFunction.failSafe(LFltToDblFunction func,
LFltToDblFunction failSafe) |
static LFltToDblFunction |
LFltToDblFunction.fltToDblFunc(LFltToDblFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LFltToDblFunction |
LFltToDblFunction.fltToDblFuncThrowing(ExF<Throwable> exF) |
static LFltToDblFunction |
LFltToDblFunction.fltToDblFuncThrowing(String message,
ExMF<Throwable> exF) |
default LFltToDblFunction |
LFltToDblFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LFltToDblFunction |
LFltToDblFunction.recursive(LFunction<LFltToDblFunction,LFltToDblFunction> selfLambda) |
static LFltToDblFunction |
LFltToDblFunction.safe()
Safe instance.
|
static LFltToDblFunction |
LFltToDblFunction.safe(LFltToDblFunction other)
Safe wrapping.
|
default LFltToDblFunction |
LFltToByteFunction.thenToDbl(LByteToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToCharFunction.thenToDbl(LCharToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToDblFunction.thenToDbl(LDblUnaryOperator after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToLongFunction.thenToDbl(LLongToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToSrtFunction.thenToDbl(LSrtToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToDblFunction.trying(ExWF<RuntimeException> exF) |
default LFltToDblFunction |
LFltToDblFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LFltToDblFunction |
LFltToDblFunction.tryingThen(LToDblFunction<Throwable> handler) |
LFltToDblFunction |
LFltToDblFunction.LFltToDblFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LFltToDblFunction> |
LFltToDblFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LFltToDblFunction> |
LFltToDblFunction.safeSupplier(LSupplier<LFltToDblFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
LFltToDblFunction.call(float a,
LFltToDblFunction lambda) |
static LFltToDblFunction |
LFltToDblFunction.composed(LFltUnaryOperator before,
LFltToDblFunction after) |
static <V> LToDblFunction<V> |
LFltToDblFunction.composed(LToFltFunction<? super V> before,
LFltToDblFunction after) |
static LFltToDblFunction |
LFltToDblFunction.failSafe(LFltToDblFunction func,
LFltToDblFunction failSafe) |
default double |
LFltToDblFunction.failSafeApplyAsDbl(float a,
LFltToDblFunction failSafe) |
static double |
LFltToDblFunction.failSafeApplyAsDbl(float a,
LFltToDblFunction func,
LFltToDblFunction failSafe) |
static LFltToDblFunction |
LFltToDblFunction.fltToDblFunc(LFltToDblFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static void |
LFltToDblFunction.fromTill(int min_i,
int max_i,
float a,
LFltToDblFunction func)
From-To.
|
static void |
LFltToDblFunction.fromTo(int min_i,
int max_i,
float a,
LFltToDblFunction func)
From-To.
|
static double |
LFltToDblFunction.handlingApplyAsDbl(float a,
LFltToDblFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LFltToDblFunction |
LFltToDblFunction.safe(LFltToDblFunction other)
Safe wrapping.
|
default LSrtToDblFunction |
LSrtToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LLongToDblFunction |
LLongToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LDblUnaryOperator |
LDblToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LCharToDblFunction |
LCharToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LByteToDblFunction |
LByteToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LBoolToDblFunction |
LBoolToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
static void |
LFltToDblFunction.times(int max_i,
float a,
LFltToDblFunction func)
From-To.
|
static double |
LFltToDblFunction.tryApplyAsDbl(float a,
LFltToDblFunction func) |
static double |
LFltToDblFunction.tryApplyAsDbl(float a,
LFltToDblFunction func,
ExWF<RuntimeException> exF) |
static double |
LFltToDblFunction.tryApplyAsDbl(float a,
LFltToDblFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static double |
LFltToDblFunction.tryApplyAsDblThen(float a,
LFltToDblFunction func,
LToDblFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LFltToDblFunction |
LFltToDblFunction.recursive(LFunction<LFltToDblFunction,LFltToDblFunction> selfLambda) |
static LFltToDblFunction |
LFltToDblFunction.recursive(LFunction<LFltToDblFunction,LFltToDblFunction> selfLambda) |
static LSupplier<LFltToDblFunction> |
LFltToDblFunction.safeSupplier(LSupplier<LFltToDblFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToDblFunction |
LFltFunction.thenToDbl(LToDblFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LToDblFunction<T> |
LToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LToDblBiFunction<T1,T2> |
LToFltBiFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LOiToDblFunction<T> |
LOiToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToDblFunction |
LFltUnaryOperator.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToDblFunction |
LFltUnaryOperator.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToDblFunction |
LFltPredicate.boolToFltToDblFunc(LBoolToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LDblSupplier |
LFltSupplier.toDblSup(LFltToDblFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.