| Modifier and Type | Class and Description |
|---|---|
static class |
LDblToLongFunction.LDblToLongFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
default LDblToLongFunction |
LDblToLongFunction.compose(LDblUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LDblToLongFunction |
LDblToLongFunction.composed(LDblUnaryOperator before,
LDblToLongFunction after) |
static LDblToLongFunction |
LDblToLongFunction.constant(long r)
Creates function that always returns the same value.
|
static LDblToLongFunction |
LDblToLongFunction.dblToLongFunc(LDblToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LDblToLongFunction |
LDblToLongFunction.dblToLongFuncThrowing(ExF<Throwable> exF) |
static LDblToLongFunction |
LDblToLongFunction.dblToLongFuncThrowing(String message,
ExMF<Throwable> exF) |
static LDblToLongFunction |
LDblToLongFunction.failSafe(LDblToLongFunction func,
LDblToLongFunction failSafe) |
default LDblToLongFunction |
LDblToLongFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LDblToLongFunction |
LDblToLongFunction.recursive(LFunction<LDblToLongFunction,LDblToLongFunction> selfLambda) |
static LDblToLongFunction |
LDblToLongFunction.safe()
Safe instance.
|
static LDblToLongFunction |
LDblToLongFunction.safe(LDblToLongFunction other)
Safe wrapping.
|
default LDblToLongFunction |
LDblToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToCharFunction.thenToLong(LCharToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToLongFunction.thenToLong(LLongUnaryOperator after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToSrtFunction.thenToLong(LSrtToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToLongFunction.trying(ExWF<RuntimeException> exF) |
default LDblToLongFunction |
LDblToLongFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LDblToLongFunction |
LDblToLongFunction.tryingThen(LToLongFunction<Throwable> handler) |
LDblToLongFunction |
LDblToLongFunction.LDblToLongFunctionSingle.value() |
static LDblToLongFunction |
LDblToLongFunction.wrap(java.util.function.DoubleToLongFunction other)
Wraps JRE instance.
|
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LDblToLongFunction> |
LDblToLongFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LDblToLongFunction> |
LDblToLongFunction.safeSupplier(LSupplier<LDblToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static long |
LDblToLongFunction.call(double a,
LDblToLongFunction lambda) |
static LDblToLongFunction |
LDblToLongFunction.composed(LDblUnaryOperator before,
LDblToLongFunction after) |
static <V> LToLongFunction<V> |
LDblToLongFunction.composed(LToDblFunction<? super V> before,
LDblToLongFunction after) |
static LDblToLongFunction |
LDblToLongFunction.dblToLongFunc(LDblToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LDblToLongFunction |
LDblToLongFunction.failSafe(LDblToLongFunction func,
LDblToLongFunction failSafe) |
default long |
LDblToLongFunction.failSafeApplyAsLong(double a,
LDblToLongFunction failSafe) |
static long |
LDblToLongFunction.failSafeApplyAsLong(double a,
LDblToLongFunction func,
LDblToLongFunction failSafe) |
static void |
LDblToLongFunction.fromTill(int min_i,
int max_i,
double a,
LDblToLongFunction func)
From-To.
|
static void |
LDblToLongFunction.fromTo(int min_i,
int max_i,
double a,
LDblToLongFunction func)
From-To.
|
static long |
LDblToLongFunction.handlingApplyAsLong(double a,
LDblToLongFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LDblToLongFunction |
LDblToLongFunction.safe(LDblToLongFunction other)
Safe wrapping.
|
default LSrtToLongFunction |
LSrtToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LLongUnaryOperator |
LLongToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LCharToLongFunction |
LCharToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LBoolToLongFunction |
LBoolToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
static void |
LDblToLongFunction.times(int max_i,
double a,
LDblToLongFunction func)
From-To.
|
static long |
LDblToLongFunction.tryApplyAsLong(double a,
LDblToLongFunction func) |
static long |
LDblToLongFunction.tryApplyAsLong(double a,
LDblToLongFunction func,
ExWF<RuntimeException> exF) |
static long |
LDblToLongFunction.tryApplyAsLong(double a,
LDblToLongFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static long |
LDblToLongFunction.tryApplyAsLongThen(double a,
LDblToLongFunction func,
LToLongFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LDblToLongFunction |
LDblToLongFunction.recursive(LFunction<LDblToLongFunction,LDblToLongFunction> selfLambda) |
static LDblToLongFunction |
LDblToLongFunction.recursive(LFunction<LDblToLongFunction,LDblToLongFunction> selfLambda) |
static LSupplier<LDblToLongFunction> |
LDblToLongFunction.safeSupplier(LSupplier<LDblToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LDblToLongFunction |
LDblFunction.thenToLong(LToLongFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LToLongFunction<T> |
LToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LToLongBiFunction<T1,T2> |
LToDblBiFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LOiToLongFunction<T> |
LOiToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LDblToLongFunction |
LDblUnaryOperator.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LDblToLongFunction |
LDblUnaryOperator.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LDblToLongFunction |
LDblPredicate.boolToDblToLongFunc(LBoolToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LLongSupplier |
LDblSupplier.toLongSup(LDblToLongFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.