| Modifier and Type | Class and Description |
|---|---|
static class |
LByteToLongFunction.LByteToLongFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
static LByteToLongFunction |
LByteToLongFunction.byteToLongFunc(LByteToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LByteToLongFunction |
LByteToLongFunction.byteToLongFuncThrowing(ExF<Throwable> exF) |
static LByteToLongFunction |
LByteToLongFunction.byteToLongFuncThrowing(String message,
ExMF<Throwable> exF) |
default LByteToLongFunction |
LByteToLongFunction.compose(LByteUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LByteToLongFunction |
LByteToLongFunction.composed(LByteUnaryOperator before,
LByteToLongFunction after) |
static LByteToLongFunction |
LByteToLongFunction.constant(long r)
Creates function that always returns the same value.
|
static LByteToLongFunction |
LByteToLongFunction.failSafe(LByteToLongFunction func,
LByteToLongFunction failSafe) |
default LByteToLongFunction |
LByteToLongFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LByteToLongFunction |
LByteToLongFunction.recursive(LFunction<LByteToLongFunction,LByteToLongFunction> selfLambda) |
static LByteToLongFunction |
LByteToLongFunction.safe()
Safe instance.
|
static LByteToLongFunction |
LByteToLongFunction.safe(LByteToLongFunction other)
Safe wrapping.
|
default LByteToLongFunction |
LByteToCharFunction.thenToLong(LCharToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToLongFunction.thenToLong(LLongUnaryOperator after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToSrtFunction.thenToLong(LSrtToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToLongFunction.trying(ExWF<RuntimeException> exF) |
default LByteToLongFunction |
LByteToLongFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LByteToLongFunction |
LByteToLongFunction.tryingThen(LToLongFunction<Throwable> handler) |
LByteToLongFunction |
LByteToLongFunction.LByteToLongFunctionSingle.value() |
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LByteToLongFunction> |
LByteToLongFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LByteToLongFunction> |
LByteToLongFunction.safeSupplier(LSupplier<LByteToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static LByteToLongFunction |
LByteToLongFunction.byteToLongFunc(LByteToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static long |
LByteToLongFunction.call(byte a,
LByteToLongFunction lambda) |
static LByteToLongFunction |
LByteToLongFunction.composed(LByteUnaryOperator before,
LByteToLongFunction after) |
static <V> LToLongFunction<V> |
LByteToLongFunction.composed(LToByteFunction<? super V> before,
LByteToLongFunction after) |
static LByteToLongFunction |
LByteToLongFunction.failSafe(LByteToLongFunction func,
LByteToLongFunction failSafe) |
default long |
LByteToLongFunction.failSafeApplyAsLong(byte a,
LByteToLongFunction failSafe) |
static long |
LByteToLongFunction.failSafeApplyAsLong(byte a,
LByteToLongFunction func,
LByteToLongFunction failSafe) |
static void |
LByteToLongFunction.fromTill(int min_i,
int max_i,
byte a,
LByteToLongFunction func)
From-To.
|
static void |
LByteToLongFunction.fromTo(int min_i,
int max_i,
byte a,
LByteToLongFunction func)
From-To.
|
static long |
LByteToLongFunction.handlingApplyAsLong(byte a,
LByteToLongFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LByteToLongFunction |
LByteToLongFunction.safe(LByteToLongFunction other)
Safe wrapping.
|
default LSrtToLongFunction |
LSrtToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LLongUnaryOperator |
LLongToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LCharToLongFunction |
LCharToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LBoolToLongFunction |
LBoolToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
static void |
LByteToLongFunction.times(int max_i,
byte a,
LByteToLongFunction func)
From-To.
|
static long |
LByteToLongFunction.tryApplyAsLong(byte a,
LByteToLongFunction func) |
static long |
LByteToLongFunction.tryApplyAsLong(byte a,
LByteToLongFunction func,
ExWF<RuntimeException> exF) |
static long |
LByteToLongFunction.tryApplyAsLong(byte a,
LByteToLongFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static long |
LByteToLongFunction.tryApplyAsLongThen(byte a,
LByteToLongFunction func,
LToLongFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LByteToLongFunction |
LByteToLongFunction.recursive(LFunction<LByteToLongFunction,LByteToLongFunction> selfLambda) |
static LByteToLongFunction |
LByteToLongFunction.recursive(LFunction<LByteToLongFunction,LByteToLongFunction> selfLambda) |
static LSupplier<LByteToLongFunction> |
LByteToLongFunction.safeSupplier(LSupplier<LByteToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LByteToLongFunction |
LByteFunction.thenToLong(LToLongFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LToLongFunction<T> |
LToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LToLongBiFunction<T1,T2> |
LToByteBiFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LOiToLongFunction<T> |
LOiToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LByteToLongFunction |
LByteUnaryOperator.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LByteToLongFunction |
LByteUnaryOperator.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LByteToLongFunction |
LBytePredicate.boolToByteToLongFunc(LBoolToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LLongSupplier |
LByteSupplier.toLongSup(LByteToLongFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.