| Modifier and Type | Method and Description |
|---|---|
default LIntConsumer |
LDblIntConsumer.lShrink(LIntToDblFunction left) |
static LIntConsumer |
LDblIntConsumer.lShrinked(LIntToDblFunction left,
LDblIntConsumer func) |
| Modifier and Type | Class and Description |
|---|---|
static class |
LIntToDblFunction.LIntToDblFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LIntToDblFunction.compose(LIntUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LIntToDblFunction |
LIntToDblFunction.composed(LIntUnaryOperator before,
LIntToDblFunction after) |
static LIntToDblFunction |
LIntToDblFunction.constant(double r)
Creates function that always returns the same value.
|
static LIntToDblFunction |
LIntToDblFunction.failSafe(LIntToDblFunction func,
LIntToDblFunction failSafe) |
default LIntToDblFunction |
LIntToDblFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LIntToDblFunction |
LIntToDblFunction.intToDblFunc(LIntToDblFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LIntToDblFunction |
LIntToDblFunction.intToDblFuncThrowing(ExF<Throwable> exF) |
static LIntToDblFunction |
LIntToDblFunction.intToDblFuncThrowing(String message,
ExMF<Throwable> exF) |
static LIntToDblFunction |
LIntToDblFunction.recursive(LFunction<LIntToDblFunction,LIntToDblFunction> selfLambda) |
static LIntToDblFunction |
LIntToDblFunction.safe()
Safe instance.
|
static LIntToDblFunction |
LIntToDblFunction.safe(LIntToDblFunction other)
Safe wrapping.
|
default LIntToDblFunction |
LIntToByteFunction.thenToDbl(LByteToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToCharFunction.thenToDbl(LCharToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToDblFunction.thenToDbl(LDblUnaryOperator after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToFltFunction.thenToDbl(LFltToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToLongFunction.thenToDbl(LLongToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToSrtFunction.thenToDbl(LSrtToDblFunction after)
Combines two functions together in a order.
|
default LIntToDblFunction |
LIntToDblFunction.trying(ExWF<RuntimeException> exF) |
default LIntToDblFunction |
LIntToDblFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LIntToDblFunction |
LIntToDblFunction.tryingThen(LToDblFunction<Throwable> handler) |
LIntToDblFunction |
LIntToDblFunction.LIntToDblFunctionSingle.value() |
static LIntToDblFunction |
LIntToDblFunction.wrap(java.util.function.IntToDoubleFunction other)
Wraps JRE instance.
|
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LIntToDblFunction> |
LIntToDblFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LIntToDblFunction> |
LIntToDblFunction.safeSupplier(LSupplier<LIntToDblFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static double |
LIntToDblFunction.call(int a,
LIntToDblFunction lambda) |
static LIntToDblFunction |
LIntToDblFunction.composed(LIntUnaryOperator before,
LIntToDblFunction after) |
static <V> LToDblFunction<V> |
LIntToDblFunction.composed(LToIntFunction<? super V> before,
LIntToDblFunction after) |
static LIntToDblFunction |
LIntToDblFunction.failSafe(LIntToDblFunction func,
LIntToDblFunction failSafe) |
default double |
LIntToDblFunction.failSafeApplyAsDbl(int a,
LIntToDblFunction failSafe) |
static double |
LIntToDblFunction.failSafeApplyAsDbl(int a,
LIntToDblFunction func,
LIntToDblFunction failSafe) |
static void |
LIntToDblFunction.fromTill(int min_a,
int max_a,
LIntToDblFunction func)
From-To.
|
static void |
LIntToDblFunction.fromTo(int min_a,
int max_a,
LIntToDblFunction func)
From-To.
|
static double |
LIntToDblFunction.handlingApplyAsDbl(int a,
LIntToDblFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LIntToDblFunction |
LIntToDblFunction.intToDblFunc(LIntToDblFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LIntToDblFunction |
LIntToDblFunction.safe(LIntToDblFunction other)
Safe wrapping.
|
default LSrtToDblFunction |
LSrtToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LLongToDblFunction |
LLongToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LFltToDblFunction |
LFltToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LDblUnaryOperator |
LDblToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LCharToDblFunction |
LCharToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LByteToDblFunction |
LByteToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LBoolToDblFunction |
LBoolToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
static void |
LIntToDblFunction.times(int max_a,
LIntToDblFunction func)
From-To.
|
static double |
LIntToDblFunction.tryApplyAsDbl(int a,
LIntToDblFunction func) |
static double |
LIntToDblFunction.tryApplyAsDbl(int a,
LIntToDblFunction func,
ExWF<RuntimeException> exF) |
static double |
LIntToDblFunction.tryApplyAsDbl(int a,
LIntToDblFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static double |
LIntToDblFunction.tryApplyAsDblThen(int a,
LIntToDblFunction func,
LToDblFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LIntToDblFunction |
LIntToDblFunction.recursive(LFunction<LIntToDblFunction,LIntToDblFunction> selfLambda) |
static LIntToDblFunction |
LIntToDblFunction.recursive(LFunction<LIntToDblFunction,LIntToDblFunction> selfLambda) |
static LSupplier<LIntToDblFunction> |
LIntToDblFunction.safeSupplier(LSupplier<LIntToDblFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LIntFunction.thenToDbl(LToDblFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LOiToDblFunction.lShrink(LIntFunction<T> left) |
default LIntToDblFunction |
LOiToDblFunction.lShrinkc(T a1) |
static <T> LIntToDblFunction |
LOiToDblFunction.lShrinked(LIntFunction<T> left,
LOiToDblFunction<T> func) |
static <T> LIntToDblFunction |
LOiToDblFunction.lShrinkedc(T a1,
LOiToDblFunction<T> func) |
| Modifier and Type | Method and Description |
|---|---|
static <T> LOiToDblFunction<T> |
LOiToDblFunction.apply2ndAsDbl(LIntToDblFunction func)
Captures single parameter function into this interface where only 2nd parameter will be used.
|
default LToDblFunction<T> |
LToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LToDblBiFunction<T1,T2> |
LToIntBiFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
default LOiToDblFunction<T> |
LOiToIntFunction.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> LOiToDblFunction<T> |
LOiToDblFunction.uncurry(LFunction<T,LIntToDblFunction> func) |
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LIntUnaryOperator.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LIntUnaryOperator.thenToDbl(LIntToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToDblFunction |
LIntPredicate.boolToIntToDblFunc(LBoolToDblFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntPredicate |
LDblIntPredicate.lShrink(LIntToDblFunction left) |
static LIntPredicate |
LDblIntPredicate.lShrinked(LIntToDblFunction left,
LDblIntPredicate func) |
| Modifier and Type | Method and Description |
|---|---|
default LDblSupplier |
LIntSupplier.toDblSup(LIntToDblFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.