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.LBoolToIntFunction 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) LBoolToIntFunction for Java 8.
*
* Type: function
*
* Domain (lvl: 1): boolean a
*
* Co-domain: int
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LBoolToIntFunction extends MetaFunction, MetaInterface.NonThrowing, Codomain, Domain1 { // NOSONAR
String DESCRIPTION = "LBoolToIntFunction: int applyAsInt(boolean a)";
// int applyAsInt(boolean a) ;
default int applyAsInt(boolean a) {
// return nestingApplyAsInt(a);
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/**
* Implement this, but call applyAsInt(boolean a)
*/
int applyAsIntX(boolean a) throws Throwable;
default int tupleApplyAsInt(LBoolSingle args) {
return applyAsInt(args.value());
}
/** Function call that handles exceptions according to the instructions. */
default int handlingApplyAsInt(boolean a, HandlingInstructions handling) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LBoolToIntFunction handling(HandlingInstructions handling) {
return a -> handlingApplyAsInt(a, handling);
}
default int applyAsInt(boolean 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 LBoolToIntFunction trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return a -> applyAsInt(a, exF, newMessage, messageParams);
}
default int applyAsInt(boolean a, @Nonnull ExWF exF) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LBoolToIntFunction trying(@Nonnull ExWF exF) {
return a -> applyAsInt(a, exF);
}
default int applyAsIntThen(boolean a, @Nonnull LToIntFunction handler) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return handler.applyAsInt(e);
}
}
default LBoolToIntFunction 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(boolean 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(boolean a) {
try {
return this.applyAsIntX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static int handlingApplyAsInt(boolean a, LBoolToIntFunction func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
return func.handlingApplyAsInt(a, handling);
}
static int tryApplyAsInt(boolean a, LBoolToIntFunction func) {
Null.nonNullArg(func, "func");
return func.nestingApplyAsInt(a);
}
static int tryApplyAsInt(boolean a, LBoolToIntFunction func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
return func.applyAsInt(a, exF, newMessage, messageParams);
}
static int tryApplyAsInt(boolean a, LBoolToIntFunction func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
return func.applyAsInt(a, exF);
}
static int tryApplyAsIntThen(boolean a, LBoolToIntFunction func, @Nonnull LToIntFunction handler) {
Null.nonNullArg(func, "func");
return func.applyAsIntThen(a, handler);
}
default int failSafeApplyAsInt(boolean a, @Nonnull LBoolToIntFunction failSafe) {
try {
return applyAsInt(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return failSafe.applyAsInt(a);
}
}
static int failSafeApplyAsInt(boolean a, LBoolToIntFunction func, @Nonnull LBoolToIntFunction failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
return failSafe.applyAsInt(a);
} else {
return func.failSafeApplyAsInt(a, failSafe);
}
}
static LBoolToIntFunction failSafe(LBoolToIntFunction func, @Nonnull LBoolToIntFunction 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(boolean a) {
return applyAsInt(a);
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LBoolToIntFunction.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(int min_i, int max_i, boolean a, LBoolToIntFunction func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i <= max_i; i++) {
func.applyAsInt(a);
}
} else {
for (int i = min_i; i >= max_i; i--) {
func.applyAsInt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(int min_i, int max_i, boolean a, LBoolToIntFunction func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i < max_i; i++) {
func.applyAsInt(a);
}
} else {
for (int i = min_i; i > max_i; i--) {
func.applyAsInt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(int max_i, boolean a, LBoolToIntFunction func) {
if (max_i < 0)
return;
fromTill(0, max_i, a, func);
}
/** Captures arguments but delays the evaluation. */
default LIntSupplier capture(boolean a) {
return () -> this.applyAsInt(a);
}
/** Creates function that always returns the same value. */
static LBoolToIntFunction 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 LBoolToIntFunction boolToIntFunc(final @Nonnull LBoolToIntFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LBoolToIntFunction recursive(final @Nonnull LFunction selfLambda) {
final LBoolToIntFunctionSingle single = new LBoolToIntFunctionSingle();
LBoolToIntFunction func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LBoolToIntFunctionSingle implements LSingle, LBoolToIntFunction {
private LBoolToIntFunction target = null;
@Override
public int applyAsIntX(boolean a) throws Throwable {
return target.applyAsIntX(a);
}
@Override
public LBoolToIntFunction value() {
return target;
}
}
@Nonnull
static LBoolToIntFunction boolToIntFuncThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce();
};
}
@Nonnull
static LBoolToIntFunction boolToIntFuncThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce(message);
};
}
static int call(boolean a, final @Nonnull LBoolToIntFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda.applyAsInt(a);
}
//
//
//
/** Safe instance. That always returns the same value (as produceInt). */
@Nonnull
static LBoolToIntFunction safe() {
return LBoolToIntFunction::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 LBoolToIntFunction safe(final @Nullable LBoolToIntFunction 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 LBoolToIntFunction compose(@Nonnull final LLogicalOperator before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsInt(before.apply(v));
}
public static LBoolToIntFunction composed(@Nonnull final LLogicalOperator before, LBoolToIntFunction after) {
return after.compose(before);
}
/** Allows to manipulate the domain of the function. */
@Nonnull
default LToIntFunction boolToIntFuncCompose(@Nonnull final LPredicate super V> before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsInt(before.test(v));
}
public static LToIntFunction composed(@Nonnull final LPredicate super V> before, LBoolToIntFunction after) {
return after.boolToIntFuncCompose(before);
}
//
//
/** Combines two functions together in a order. */
@Nonnull
default LBoolFunction 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 LBoolToByteFunction thenToByte(@Nonnull LIntToByteFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsByte(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToSrtFunction thenToSrt(@Nonnull LIntToSrtFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsSrt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToIntFunction thenToInt(@Nonnull LIntUnaryOperator after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsInt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToLongFunction thenToLong(@Nonnull LIntToLongFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsLong(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToFltFunction thenToFlt(@Nonnull LIntToFltFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsFlt(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToDblFunction thenToDbl(@Nonnull LIntToDblFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsDbl(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBoolToCharFunction thenToChar(@Nonnull LIntToCharFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsChar(this.applyAsInt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LLogicalOperator thenToBool(@Nonnull LIntPredicate after) {
Null.nonNullArg(after, "after");
return a -> after.test(this.applyAsInt(a));
}
//
//
//
/** Does nothing (LBoolToIntFunction) Function */
public static int produceInt(boolean 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);
LObjIntPredicate oiFunc0 = (LObjIntPredicate) ia.getter();
int i = 0;
for (; i < size; i++) {
boolean a = oiFunc0.test(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();
LPredicate nextFunc0 = (LPredicate) sa.supplier();
while (testFunc0.test(iterator0)) {
boolean a = nextFunc0.test(iterator0);
consumer.accept(this.applyAsInt(a));
}
}
}