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.consumer.primitives.LBoolConsumer 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.consumer.primitives;
import javax.annotation.Nonnull; // NOSONAR
import javax.annotation.Nullable; // NOSONAR
import java.util.Objects; // NOSONAR
import eu.lunisolar.magma.basics.*; //NOSONAR
import eu.lunisolar.magma.basics.exceptions.*; // NOSONAR
import eu.lunisolar.magma.func.*; // 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.consumer.*; // NOSONAR
import eu.lunisolar.magma.func.*; // NOSONAR
import eu.lunisolar.magma.func.tuple.*; // NOSONAR
import java.util.function.*; // NOSONAR
import java.util.*;
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) LBoolConsumer for Java 8.
*
* Type: consumer
*
* Domain (lvl: 1): boolean a
*
* Co-domain: none
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LBoolConsumer extends MetaConsumer, MetaInterface.NonThrowing, Codomain, Domain1 {
String DESCRIPTION = "LBoolConsumer: void accept(boolean a)";
// void accept(boolean a) ;
default void accept(boolean a) {
// nestingAccept(a);
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/**
* Implement this, but call accept(boolean a)
*/
void acceptX(boolean a) throws Throwable;
default LTuple.Void tupleAccept(LBoolSingle args) {
accept(args.value());
return LTuple.Void.INSTANCE;
}
/** Function call that handles exceptions according to the instructions. */
default void handlingAccept(boolean a, HandlingInstructions handling) {
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LBoolConsumer handling(HandlingInstructions handling) {
return a -> handlingAccept(a, handling);
}
default void accept(boolean a, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF, newMessage, messageParams);
}
}
default LBoolConsumer trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return a -> accept(a, exF, newMessage, messageParams);
}
default void accept(boolean a, @Nonnull ExWF exF) {
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LBoolConsumer trying(@Nonnull ExWF exF) {
return a -> accept(a, exF);
}
default void acceptThen(boolean a, @Nonnull LConsumer handler) {
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
handler.accept(e);
}
}
default LBoolConsumer tryingThen(@Nonnull LConsumer handler) {
return a -> acceptThen(a, handler);
}
/** Function call that handles exceptions by always nesting checked exceptions and propagating the others as is. */
default void nestingAccept(boolean a) {
try {
this.acceptX(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 void shovingAccept(boolean a) {
try {
this.acceptX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static void handlingAccept(boolean a, LBoolConsumer func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
func.handlingAccept(a, handling);
}
static void tryAccept(boolean a, LBoolConsumer func) {
Null.nonNullArg(func, "func");
func.nestingAccept(a);
}
static void tryAccept(boolean a, LBoolConsumer func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
func.accept(a, exF, newMessage, messageParams);
}
static void tryAccept(boolean a, LBoolConsumer func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
func.accept(a, exF);
}
static void tryAcceptThen(boolean a, LBoolConsumer func, @Nonnull LConsumer handler) {
Null.nonNullArg(func, "func");
func.acceptThen(a, handler);
}
default void failSafeAccept(boolean a, @Nonnull LBoolConsumer failSafe) {
try {
accept(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
failSafe.accept(a);
}
}
static void failSafeAccept(boolean a, LBoolConsumer func, @Nonnull LBoolConsumer failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
failSafe.accept(a);
} else {
func.failSafeAccept(a, failSafe);
}
}
static LBoolConsumer failSafe(LBoolConsumer func, @Nonnull LBoolConsumer failSafe) {
Null.nonNullArg(failSafe, "failSafe");
return a -> failSafeAccept(a, func, failSafe);
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LBoolConsumer.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(int min_i, int max_i, boolean a, LBoolConsumer func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i <= max_i; i++) {
func.accept(a);
}
} else {
for (int i = min_i; i >= max_i; i--) {
func.accept(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(int min_i, int max_i, boolean a, LBoolConsumer func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i < max_i; i++) {
func.accept(a);
}
} else {
for (int i = min_i; i > max_i; i--) {
func.accept(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(int max_i, boolean a, LBoolConsumer func) {
if (max_i < 0)
return;
fromTill(0, max_i, a, func);
}
/** Captures arguments but delays the evaluation. */
default LAction capture(boolean a) {
return () -> this.accept(a);
}
/** Convenient method in case lambda expression is ambiguous for the compiler (that might happen for overloaded methods accepting different interfaces). */
@Nonnull
static LBoolConsumer boolCons(final @Nonnull LBoolConsumer lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LBoolConsumer recursive(final @Nonnull LFunction selfLambda) {
final LBoolConsumerSingle single = new LBoolConsumerSingle();
LBoolConsumer func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LBoolConsumerSingle implements LSingle, LBoolConsumer {
private LBoolConsumer target = null;
@Override
public void acceptX(boolean a) throws Throwable {
target.acceptX(a);
}
@Override
public LBoolConsumer value() {
return target;
}
}
@Nonnull
static LBoolConsumer boolConsThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce();
};
}
@Nonnull
static LBoolConsumer boolConsThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce(message);
};
}
static void call(boolean a, final @Nonnull LBoolConsumer lambda) {
Null.nonNullArg(lambda, "lambda");
lambda.accept(a);
}
//
//
//
/** Safe instance. */
@Nonnull
static LBoolConsumer safe() {
return LBoolConsumer::doNothing;
}
/** 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 LBoolConsumer safe(final @Nullable LBoolConsumer 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 LBoolConsumer compose(@Nonnull final LLogicalOperator before) {
Null.nonNullArg(before, "before");
return v -> this.accept(before.apply(v));
}
public static LBoolConsumer composed(@Nonnull final LLogicalOperator before, LBoolConsumer after) {
return after.compose(before);
}
/** Allows to manipulate the domain of the function. */
@Nonnull
default LConsumer boolConsCompose(@Nonnull final LPredicate super V> before) {
Null.nonNullArg(before, "before");
return v -> this.accept(before.test(v));
}
public static LConsumer composed(@Nonnull final LPredicate super V> before, LBoolConsumer after) {
return after.boolConsCompose(before);
}
//
//
/** Combines two LBoolConsumer together in a order. */
@Nonnull
default LBoolConsumer andThen(@Nonnull LBoolConsumer after) {
Null.nonNullArg(after, "after");
return a -> {
this.accept(a);
after.accept(a);
};
}
//
//
//
/** Does nothing (LBoolConsumer) */
public static void doNothing(boolean a) {
// NOSONAR
}
/**
* For each element (or tuple) from arguments, calls the consumer.
* Thread safety, fail-fast, fail-safety of this method is not expected.
* @returns iterations count
*/
public static int forEach(IndexedRead ia, C0 source, LBoolConsumer 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(a);
}
return i;
}
/**
* For each element (or tuple) from arguments, calls the consumer.
* Thread safety, fail-fast, fail-safety of this method depends highly on the arguments.
* @returns iterations count
*/
public static int iterate(SequentialRead sa, C0 source, LBoolConsumer consumer) {
Object iterator0 = ((LFunction) sa.adapter()).apply(source);
LPredicate testFunc0 = (LPredicate) sa.tester();
LPredicate nextFunc0 = (LPredicate) sa.supplier();
int i = 0;
while (testFunc0.test(iterator0)) {
boolean a = nextFunc0.test(iterator0);
consumer.accept(a);
i++;
}
return i;
}
}