| Modifier and Type | Method and Description |
|---|---|
default LIntConsumer |
LLongIntConsumer.lShrink(LIntToLongFunction left) |
static LIntConsumer |
LLongIntConsumer.lShrinked(LIntToLongFunction left,
LLongIntConsumer func) |
| Modifier and Type | Class and Description |
|---|---|
static class |
LIntToLongFunction.LIntToLongFunctionSingle |
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LIntToLongFunction.compose(LIntUnaryOperator before)
Allows to manipulate the domain of the function.
|
static LIntToLongFunction |
LIntToLongFunction.composed(LIntUnaryOperator before,
LIntToLongFunction after) |
static LIntToLongFunction |
LIntToLongFunction.constant(long r)
Creates function that always returns the same value.
|
static LIntToLongFunction |
LIntToLongFunction.failSafe(LIntToLongFunction func,
LIntToLongFunction failSafe) |
default LIntToLongFunction |
LIntToLongFunction.handling(HandlingInstructions<Throwable,RuntimeException> handling) |
static LIntToLongFunction |
LIntToLongFunction.intToLongFunc(LIntToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LIntToLongFunction |
LIntToLongFunction.intToLongFuncThrowing(ExF<Throwable> exF) |
static LIntToLongFunction |
LIntToLongFunction.intToLongFuncThrowing(String message,
ExMF<Throwable> exF) |
static LIntToLongFunction |
LIntToLongFunction.recursive(LFunction<LIntToLongFunction,LIntToLongFunction> selfLambda) |
static LIntToLongFunction |
LIntToLongFunction.safe()
Safe instance.
|
static LIntToLongFunction |
LIntToLongFunction.safe(LIntToLongFunction other)
Safe wrapping.
|
default LIntToLongFunction |
LIntToByteFunction.thenToLong(LByteToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToCharFunction.thenToLong(LCharToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToDblFunction.thenToLong(LDblToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToFltFunction.thenToLong(LFltToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToLongFunction.thenToLong(LLongUnaryOperator after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToSrtFunction.thenToLong(LSrtToLongFunction after)
Combines two functions together in a order.
|
default LIntToLongFunction |
LIntToLongFunction.trying(ExWF<RuntimeException> exF) |
default LIntToLongFunction |
LIntToLongFunction.trying(ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
default LIntToLongFunction |
LIntToLongFunction.tryingThen(LToLongFunction<Throwable> handler) |
LIntToLongFunction |
LIntToLongFunction.LIntToLongFunctionSingle.value() |
static LIntToLongFunction |
LIntToLongFunction.wrap(java.util.function.IntToLongFunction other)
Wraps JRE instance.
|
| Modifier and Type | Method and Description |
|---|---|
static LSupplier<LIntToLongFunction> |
LIntToLongFunction.safeSupplier()
Safe instance supplier.
|
static LSupplier<LIntToLongFunction> |
LIntToLongFunction.safeSupplier(LSupplier<LIntToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
static long |
LIntToLongFunction.call(int a,
LIntToLongFunction lambda) |
static LIntToLongFunction |
LIntToLongFunction.composed(LIntUnaryOperator before,
LIntToLongFunction after) |
static <V> LToLongFunction<V> |
LIntToLongFunction.composed(LToIntFunction<? super V> before,
LIntToLongFunction after) |
static LIntToLongFunction |
LIntToLongFunction.failSafe(LIntToLongFunction func,
LIntToLongFunction failSafe) |
default long |
LIntToLongFunction.failSafeApplyAsLong(int a,
LIntToLongFunction failSafe) |
static long |
LIntToLongFunction.failSafeApplyAsLong(int a,
LIntToLongFunction func,
LIntToLongFunction failSafe) |
static void |
LIntToLongFunction.fromTill(int min_a,
int max_a,
LIntToLongFunction func)
From-To.
|
static void |
LIntToLongFunction.fromTo(int min_a,
int max_a,
LIntToLongFunction func)
From-To.
|
static long |
LIntToLongFunction.handlingApplyAsLong(int a,
LIntToLongFunction func,
HandlingInstructions<Throwable,RuntimeException> handling) |
static LIntToLongFunction |
LIntToLongFunction.intToLongFunc(LIntToLongFunction lambda)
Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces).
|
static LIntToLongFunction |
LIntToLongFunction.safe(LIntToLongFunction other)
Safe wrapping.
|
default LSrtToLongFunction |
LSrtToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LLongUnaryOperator |
LLongToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LFltToLongFunction |
LFltToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LDblToLongFunction |
LDblToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LCharToLongFunction |
LCharToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LByteToLongFunction |
LByteToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LBoolToLongFunction |
LBoolToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
static void |
LIntToLongFunction.times(int max_a,
LIntToLongFunction func)
From-To.
|
static long |
LIntToLongFunction.tryApplyAsLong(int a,
LIntToLongFunction func) |
static long |
LIntToLongFunction.tryApplyAsLong(int a,
LIntToLongFunction func,
ExWF<RuntimeException> exF) |
static long |
LIntToLongFunction.tryApplyAsLong(int a,
LIntToLongFunction func,
ExWMF<RuntimeException> exF,
String newMessage,
Object... messageParams) |
static long |
LIntToLongFunction.tryApplyAsLongThen(int a,
LIntToLongFunction func,
LToLongFunction<Throwable> handler) |
| Modifier and Type | Method and Description |
|---|---|
static LIntToLongFunction |
LIntToLongFunction.recursive(LFunction<LIntToLongFunction,LIntToLongFunction> selfLambda) |
static LIntToLongFunction |
LIntToLongFunction.recursive(LFunction<LIntToLongFunction,LIntToLongFunction> selfLambda) |
static LSupplier<LIntToLongFunction> |
LIntToLongFunction.safeSupplier(LSupplier<LIntToLongFunction> supplier)
Safe supplier.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LIntFunction.thenToLong(LToLongFunction<? super R> after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LOiToLongFunction.lShrink(LIntFunction<T> left) |
default LIntToLongFunction |
LOiToLongFunction.lShrinkc(T a1) |
static <T> LIntToLongFunction |
LOiToLongFunction.lShrinked(LIntFunction<T> left,
LOiToLongFunction<T> func) |
static <T> LIntToLongFunction |
LOiToLongFunction.lShrinkedc(T a1,
LOiToLongFunction<T> func) |
| Modifier and Type | Method and Description |
|---|---|
static <T> LOiToLongFunction<T> |
LOiToLongFunction.apply2ndAsLong(LIntToLongFunction func)
Captures single parameter function into this interface where only 2nd parameter will be used.
|
default LToLongFunction<T> |
LToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LToLongBiFunction<T1,T2> |
LToIntBiFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
default LOiToLongFunction<T> |
LOiToIntFunction.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
static <T> LOiToLongFunction<T> |
LOiToLongFunction.uncurry(LFunction<T,LIntToLongFunction> func) |
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LIntUnaryOperator.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LIntUnaryOperator.thenToLong(LIntToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntToLongFunction |
LIntPredicate.boolToIntToLongFunc(LBoolToLongFunction after)
Combines two functions together in a order.
|
| Modifier and Type | Method and Description |
|---|---|
default LIntPredicate |
LLongIntPredicate.lShrink(LIntToLongFunction left) |
static LIntPredicate |
LLongIntPredicate.lShrinked(LIntToLongFunction left,
LLongIntPredicate func) |
| Modifier and Type | Method and Description |
|---|---|
default LLongSupplier |
LIntSupplier.toLongSup(LIntToLongFunction after)
Combines two functions together in a order.
|
Copyright © 2019. All rights reserved.