Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
eu.lunisolar.magma.func.function.conversion.LLongToIntFunction Maven / Gradle / Ivy
/*
* This file is part of "lunisolar-magma".
*
* (C) Copyright 2014-2019 Lunisolar (http://lunisolar.eu/).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package eu.lunisolar.magma.func.function.conversion;
import javax.annotation.Nonnull; // NOSONAR
import javax.annotation.Nullable; // NOSONAR
import java.util.Comparator; // NOSONAR
import java.util.Objects; // NOSONAR
import eu.lunisolar.magma.basics.*; //NOSONAR
import eu.lunisolar.magma.basics.builder.*; // NOSONAR
import eu.lunisolar.magma.basics.exceptions.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.aType.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.type.*; // NOSONAR
import eu.lunisolar.magma.basics.meta.functional.domain.*; // NOSONAR
import eu.lunisolar.magma.func.IA;
import eu.lunisolar.magma.func.SA;
import eu.lunisolar.magma.func.*; // NOSONAR
import eu.lunisolar.magma.func.tuple.*; // NOSONAR
import java.util.function.*; // NOSONAR
import java.util.*; // NOSONAR
import java.lang.reflect.*;
import eu.lunisolar.magma.func.action.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.bi.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.obj.*; // NOSONAR
import eu.lunisolar.magma.func.consumer.primitives.tri.*; // NOSONAR
import eu.lunisolar.magma.func.function.*; // NOSONAR
import eu.lunisolar.magma.func.function.conversion.*; // NOSONAR
import eu.lunisolar.magma.func.function.from.*; // NOSONAR
import eu.lunisolar.magma.func.function.to.*; // NOSONAR
import eu.lunisolar.magma.func.operator.binary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.ternary.*; // NOSONAR
import eu.lunisolar.magma.func.operator.unary.*; // NOSONAR
import eu.lunisolar.magma.func.predicate.*; // NOSONAR
import eu.lunisolar.magma.func.supplier.*; // NOSONAR
/**
* Non-throwing functional interface (lambda) LLongToIntFunction for Java 8.
*
* Type: function
*
* Domain (lvl: 1): long a
*
* Co-domain: int
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LLongToIntFunction extends LongToIntFunction, MetaFunction, MetaInterface.NonThrowing, Codomain, Domain1 { // NOSONAR
String DESCRIPTION = "LLongToIntFunction: int applyAsInt(long a)";
// int applyAsInt(long a) ;
default int applyAsInt(long a) {
// return nestingApplyAsInt(a);
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/**
* Implement this, but call applyAsInt(long a)
*/
int applyAsIntX(long a) throws Throwable;
default int tupleApplyAsInt(LLongSingle args) {
return applyAsInt(args.value());
}
/** Function call that handles exceptions according to the instructions. */
default int handlingApplyAsInt(long a, HandlingInstructions handling) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LLongToIntFunction handling(HandlingInstructions handling) {
return a -> handlingApplyAsInt(a, handling);
}
default int applyAsInt(long a, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF, newMessage, messageParams);
}
}
default LLongToIntFunction trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return a -> applyAsInt(a, exF, newMessage, messageParams);
}
default int applyAsInt(long a, @Nonnull ExWF exF) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LLongToIntFunction trying(@Nonnull ExWF exF) {
return a -> applyAsInt(a, exF);
}
default int applyAsIntThen(long a, @Nonnull LToIntFunction handler) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return handler.applyAsInt(e);
}
}
default LLongToIntFunction tryingThen(@Nonnull LToIntFunction handler) {
return a -> applyAsIntThen(a, handler);
}
/** Function call that handles exceptions by always nesting checked exceptions and propagating the others as is. */
default int nestingApplyAsInt(long a) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/** Function call that handles exceptions by always propagating them as is, even when they are undeclared checked ones. */
default int shovingApplyAsInt(long a) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static int handlingApplyAsInt(long a, LLongToIntFunction func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
return func.handlingApplyAsInt(a, handling);
}
static int tryApplyAsInt(long a, LLongToIntFunction func) {
Null.nonNullArg(func, "func");
return func.nestingApplyAsInt(a);
}
static int tryApplyAsInt(long a, LLongToIntFunction func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
return func.applyAsInt(a, exF, newMessage, messageParams);
}
static int tryApplyAsInt(long a, LLongToIntFunction func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
return func.applyAsInt(a, exF);
}
static int tryApplyAsIntThen(long a, LLongToIntFunction func, @Nonnull LToIntFunction handler) {
Null.nonNullArg(func, "func");
return func.applyAsIntThen(a, handler);
}
default int failSafeApplyAsInt(long a, @Nonnull LLongToIntFunction failSafe) {
try {
return applyAsInt(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return failSafe.applyAsInt(a);
}
}
static int failSafeApplyAsInt(long a, LLongToIntFunction func, @Nonnull LLongToIntFunction failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
return failSafe.applyAsInt(a);
} else {
return func.failSafeApplyAsInt(a, failSafe);
}
}
static LLongToIntFunction failSafe(LLongToIntFunction func, @Nonnull LLongToIntFunction failSafe) {
Null.nonNullArg(failSafe, "failSafe");
return a -> failSafeApplyAsInt(a, func, failSafe);
}
/** Just to mirror the method: Ensures the result is not null */
default int nonNullApplyAsInt(long a) {
return applyAsInt(a);
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LLongToIntFunction.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(long min_a, long max_a, LLongToIntFunction func) {
Null.nonNullArg(func, "func");
if (min_a <= max_a) {
for (long a = min_a; a <= max_a; a++) {
func.applyAsInt(a);
}
} else {
for (long a = min_a; a >= max_a; a--) {
func.applyAsInt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(long min_a, long max_a, LLongToIntFunction func) {
Null.nonNullArg(func, "func");
if (min_a <= max_a) {
for (long a = min_a; a < max_a; a++) {
func.applyAsInt(a);
}
} else {
for (long a = min_a; a > max_a; a--) {
func.applyAsInt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(long max_a, LLongToIntFunction func) {
if (max_a < 0)
return;
fromTill(0, max_a, func);
}
/** Captures arguments but delays the evaluation. */
default LIntSupplier capture(long a) {
return () -> this.applyAsInt(a);
}
/** Creates function that always returns the same value. */
static LLongToIntFunction constant(int r) {
return a -> r;
}
/** Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces). */
@Nonnull
static LLongToIntFunction longToIntFunc(final @Nonnull LLongToIntFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LLongToIntFunction recursive(final @Nonnull LFunction selfLambda) {
final LLongToIntFunctionSingle single = new LLongToIntFunctionSingle();
LLongToIntFunction func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LLongToIntFunctionSingle implements LSingle, LLongToIntFunction {
private LLongToIntFunction target = null;
@Override
public int applyAsIntX(long a) throws Throwable {
return target.applyAsIntX(a);
}
@Override
public LLongToIntFunction value() {
return target;
}
}
@Nonnull
static LLongToIntFunction longToIntFuncThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce();
};
}
@Nonnull
static LLongToIntFunction longToIntFuncThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce(message);
};
}
static int call(long a, final @Nonnull LLongToIntFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda.applyAsInt(a);
}
//
/** Wraps JRE instance. */
@Nonnull
static LLongToIntFunction wrap(final LongToIntFunction other) {
return other::applyAsInt;
}
//
//
/** Safe instance. That always returns the same value (as produceInt). */
@Nonnull
static LLongToIntFunction safe() {
return LLongToIntFunction::produceInt;
}
/** Safe instance supplier. Returns supplier of safe() instance. */
@Nonnull
static LSupplier safeSupplier() {
return () -> safe();
}
/** Safe wrapping. Either argument function is returned (if it is not null) or safe() instance. */
@Nonnull
static LLongToIntFunction safe(final @Nullable LLongToIntFunction other) {
if (other == null) {
return safe();
} else {
return other;
}
}
/** Safe supplier. Either argument supplier is returned (if it is not null) or supplier of safe() instance. */
@Nonnull
static LSupplier safeSupplier(final @Nullable LSupplier supplier) {
if (supplier == null) {
return safeSupplier();
} else {
return supplier;
}
}
//
//
/** Allows to manipulate the domain of the function. */
@Nonnull
default LLongToIntFunction compose(@Nonnull final LLongUnaryOperator before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsInt(before.applyAsLong(v));
}
public static LLongToIntFunction composed(@Nonnull final LLongUnaryOperator before, LLongToIntFunction after) {
return after.compose(before);
}
/** Allows to manipulate the domain of the function. */
@Nonnull
default LToIntFunction longToIntFuncCompose(@Nonnull final LToLongFunction super V> before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsInt(before.applyAsLong(v));
}
public static LToIntFunction composed(@Nonnull final LToLongFunction super V> before, LLongToIntFunction after) {
return after.longToIntFuncCompose(before);
}
//
//
/** Combines two functions together in a order. */
@Nonnull
default LLongFunction then(@Nonnull LIntFunction extends V> after) {
Null.nonNullArg(after, "after");
return a -> after.apply(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToByteFunction thenToByte(@Nonnull LIntToByteFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsByte(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToSrtFunction thenToSrt(@Nonnull LIntToSrtFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsSrt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToIntFunction thenToInt(@Nonnull LIntUnaryOperator after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsInt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongUnaryOperator thenToLong(@Nonnull LIntToLongFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsLong(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToFltFunction thenToFlt(@Nonnull LIntToFltFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsFlt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToDblFunction thenToDbl(@Nonnull LIntToDblFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsDbl(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongToCharFunction thenToChar(@Nonnull LIntToCharFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsChar(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLongPredicate thenToBool(@Nonnull LIntPredicate after) {
Null.nonNullArg(after, "after");
return a -> after.test(this.applyAsInt(a));
}
//
//
//
/** Does nothing (LLongToIntFunction) Function */
public static int produceInt(long a) {
return Function4U.defaultInteger;
}
/**
* For each element (or tuple) from arguments, calls the function and passes the result to consumer.
* Thread safety, fail-fast, fail-safety of this method is not expected.
*/
default void forEach(IndexedRead ia, C0 source, LIntConsumer consumer) {
int size = ia.size(source);
LOiToLongFunction oiFunc0 = (LOiToLongFunction) ia.getter();
int i = 0;
for (; i < size; i++) {
long a = oiFunc0.applyAsLong(source, i);
consumer.accept(this.applyAsInt(a));
}
}
/**
* For each element (or tuple) from arguments, calls the function and passes the result to consumer.
* Thread safety, fail-fast, fail-safety of this method depends highly on the arguments.
*/
default void iterate(SequentialRead sa, C0 source, LIntConsumer consumer) {
Object iterator0 = ((LFunction) sa.adapter()).apply(source);
LPredicate testFunc0 = (LPredicate) sa.tester();
LToLongFunction nextFunc0 = (LToLongFunction) sa.supplier();
while (testFunc0.test(iterator0)) {
long a = nextFunc0.applyAsLong(iterator0);
consumer.accept(this.applyAsInt(a));
}
}
}