| Modifier and Type | Class and Description |
|---|---|
static class |
LFltToLongFunction.LFltToLongFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
default LFltToLongFunction |
LFltToLongFunction.compose(LFltUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LFltToLongFunction |
LFltToLongFunction.composed(LFltUnaryOperator before,
LFltToLongFunction after) |
static LFltToLongFunction |
LFltToLongFunction.constant(long r)
Creates function that always returns the same value.
|
static LFltToLongFunction |
LFltToLongFunction.failSafe(LFltToLongFunction func,
LFltToLongFunction failSafe) |
static LFltToLongFunction |
LFltToLongFunction.fltToLongFunc(LFltToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LFltToLongFunction |
LFltToLongFunction.fltToLongFuncThrowing(ExF<Throwable> exF) |
static LFltToLongFunction |
LFltToLongFunction.fltToLongFuncThrowing(String message,
ExMF<Throwable> exF) |
default LFltToLongFunction |
LFltToLongFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LFltToLongFunction |
LFltToLongFunction.recursive(LFunction<LFltToLongFunction,LFltToLongFunction> selfLambda) |
static LFltToLongFunction |
LFltToLongFunction.safe()
Safe instance.
|
static LFltToLongFunction |
LFltToLongFunction.safe(LFltToLongFunction other)
Safe wrapping.
|
default LFltToLongFunction |
LFltToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToCharFunction.thenToLong(LCharToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToLongFunction.thenToLong(LLongUnaryOperator after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToSrtFunction.thenToLong(LSrtToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToLongFunction.trying(ExWF<RuntimeException> exF) |
default LFltToLongFunction |
LFltToLongFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LFltToLongFunction |
LFltToLongFunction.tryingThen(LToLongFunction<Throwable> handler) |
LFltToLongFunction |
LFltToLongFunction.LFltToLongFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LFltToLongFunction> |
LFltToLongFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LFltToLongFunction> |
LFltToLongFunction.safeSupplier(LSupplier<LFltToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static long |
LFltToLongFunction.call(float a,
LFltToLongFunction lambda) |
static LFltToLongFunction |
LFltToLongFunction.composed(LFltUnaryOperator before,
LFltToLongFunction after) |
static <V> LToLongFunction<V> |
LFltToLongFunction.composed(LToFltFunction<? super V> before,
LFltToLongFunction after) |
static LFltToLongFunction |
LFltToLongFunction.failSafe(LFltToLongFunction func,
LFltToLongFunction failSafe) |
default long |
LFltToLongFunction.failSafeApplyAsLong(float a,
LFltToLongFunction failSafe) |
static long |
LFltToLongFunction.failSafeApplyAsLong(float a,
LFltToLongFunction func,
LFltToLongFunction failSafe) |
static LFltToLongFunction |
LFltToLongFunction.fltToLongFunc(LFltToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static void |
LFltToLongFunction.fromTill(int min_i,
int max_i,
float a,
LFltToLongFunction func)
From-To.
|
static void |
LFltToLongFunction.fromTo(int min_i,
int max_i,
float a,
LFltToLongFunction func)
From-To.
|
static long |
LFltToLongFunction.handlingApplyAsLong(float a,
LFltToLongFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LFltToLongFunction |
LFltToLongFunction.safe(LFltToLongFunction other)
Safe wrapping.
|
default LSrtToLongFunction |
LSrtToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LLongUnaryOperator |
LLongToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LCharToLongFunction |
LCharToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LBoolToLongFunction |
LBoolToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
static void |
LFltToLongFunction.times(int max_i,
float a,
LFltToLongFunction func)
From-To.
|
static long |
LFltToLongFunction.tryApplyAsLong(float a,
LFltToLongFunction func) |
static long |
LFltToLongFunction.tryApplyAsLong(float a,
LFltToLongFunction func,
ExWF<RuntimeException> exF) |
static long |
LFltToLongFunction.tryApplyAsLong(float a,
LFltToLongFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static long |
LFltToLongFunction.tryApplyAsLongThen(float a,
LFltToLongFunction func,
LToLongFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LFltToLongFunction |
LFltToLongFunction.recursive(LFunction<LFltToLongFunction,LFltToLongFunction> selfLambda) |
static LFltToLongFunction |
LFltToLongFunction.recursive(LFunction<LFltToLongFunction,LFltToLongFunction> selfLambda) |
static LSupplier<LFltToLongFunction> |
LFltToLongFunction.safeSupplier(LSupplier<LFltToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToLongFunction |
LFltFunction.thenToLong(LToLongFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LToLongFunction<T> |
LToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LToLongBiFunction<T1,T2> |
LToFltBiFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LOiToLongFunction<T> |
LOiToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToLongFunction |
LFltUnaryOperator.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToLongFunction |
LFltUnaryOperator.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LFltToLongFunction |
LFltPredicate.boolToFltToLongFunc(LBoolToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LLongSupplier |
LFltSupplier.toLongSup(LFltToLongFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.