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.LByteToSrtFunction 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) LByteToSrtFunction for Java 8.
*
* Type: function
*
* Domain (lvl: 1): byte a
*
* Co-domain: short
*
*/
@FunctionalInterface
@SuppressWarnings("UnusedDeclaration")
public interface LByteToSrtFunction extends MetaFunction, MetaInterface.NonThrowing, Codomain, Domain1 { // NOSONAR
String DESCRIPTION = "LByteToSrtFunction: short applyAsSrt(byte a)";
// short applyAsSrt(byte a) ;
default short applyAsSrt(byte a) {
// return nestingApplyAsSrt(a);
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.nestCheckedAndThrow(e);
}
}
/**
* Implement this, but call applyAsSrt(byte a)
*/
short applyAsSrtX(byte a) throws Throwable;
default short tupleApplyAsSrt(LByteSingle args) {
return applyAsSrt(args.value());
}
/** Function call that handles exceptions according to the instructions. */
default short handlingApplyAsSrt(byte a, HandlingInstructions handling) {
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
throw Handler.handleOrNest(e, handling);
}
}
default LByteToSrtFunction handling(HandlingInstructions handling) {
return a -> handlingApplyAsSrt(a, handling);
}
default short applyAsSrt(byte a, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF, newMessage, messageParams);
}
}
default LByteToSrtFunction trying(@Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
return a -> applyAsSrt(a, exF, newMessage, messageParams);
}
default short applyAsSrt(byte a, @Nonnull ExWF exF) {
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.wrap(e, exF);
}
}
default LByteToSrtFunction trying(@Nonnull ExWF exF) {
return a -> applyAsSrt(a, exF);
}
default short applyAsSrtThen(byte a, @Nonnull LToSrtFunction handler) {
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return handler.applyAsSrt(e);
}
}
default LByteToSrtFunction tryingThen(@Nonnull LToSrtFunction handler) {
return a -> applyAsSrtThen(a, handler);
}
/** Function call that handles exceptions by always nesting checked exceptions and propagating the others as is. */
default short nestingApplyAsSrt(byte a) {
try {
return this.applyAsSrtX(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 short shovingApplyAsSrt(byte a) {
try {
return this.applyAsSrtX(a);
} catch (Throwable e) { // NOSONAR
throw Handling.shoveIt(e);
}
}
static short handlingApplyAsSrt(byte a, LByteToSrtFunction func, HandlingInstructions handling) { // <-
Null.nonNullArg(func, "func");
return func.handlingApplyAsSrt(a, handling);
}
static short tryApplyAsSrt(byte a, LByteToSrtFunction func) {
Null.nonNullArg(func, "func");
return func.nestingApplyAsSrt(a);
}
static short tryApplyAsSrt(byte a, LByteToSrtFunction func, @Nonnull ExWMF exF, @Nonnull String newMessage, @Nullable Object... messageParams) {
Null.nonNullArg(func, "func");
return func.applyAsSrt(a, exF, newMessage, messageParams);
}
static short tryApplyAsSrt(byte a, LByteToSrtFunction func, @Nonnull ExWF exF) {
Null.nonNullArg(func, "func");
return func.applyAsSrt(a, exF);
}
static short tryApplyAsSrtThen(byte a, LByteToSrtFunction func, @Nonnull LToSrtFunction handler) {
Null.nonNullArg(func, "func");
return func.applyAsSrtThen(a, handler);
}
default short failSafeApplyAsSrt(byte a, @Nonnull LByteToSrtFunction failSafe) {
try {
return applyAsSrt(a);
} catch (Throwable e) { // NOSONAR
Handling.handleErrors(e);
return failSafe.applyAsSrt(a);
}
}
static short failSafeApplyAsSrt(byte a, LByteToSrtFunction func, @Nonnull LByteToSrtFunction failSafe) {
Null.nonNullArg(failSafe, "failSafe");
if (func == null) {
return failSafe.applyAsSrt(a);
} else {
return func.failSafeApplyAsSrt(a, failSafe);
}
}
static LByteToSrtFunction failSafe(LByteToSrtFunction func, @Nonnull LByteToSrtFunction failSafe) {
Null.nonNullArg(failSafe, "failSafe");
return a -> failSafeApplyAsSrt(a, func, failSafe);
}
/** Just to mirror the method: Ensures the result is not null */
default short nonNullApplyAsSrt(byte a) {
return applyAsSrt(a);
}
/** Returns description of the functional interface. */
@Nonnull
default String functionalInterfaceDescription() {
return LByteToSrtFunction.DESCRIPTION;
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTo(int min_i, int max_i, byte a, LByteToSrtFunction func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i <= max_i; i++) {
func.applyAsSrt(a);
}
} else {
for (int i = min_i; i >= max_i; i--) {
func.applyAsSrt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void fromTill(int min_i, int max_i, byte a, LByteToSrtFunction func) {
Null.nonNullArg(func, "func");
if (min_i <= max_i) {
for (int i = min_i; i < max_i; i++) {
func.applyAsSrt(a);
}
} else {
for (int i = min_i; i > max_i; i--) {
func.applyAsSrt(a);
}
}
}
/** From-To. Intended to be used with non-capturing lambda. */
public static void times(int max_i, byte a, LByteToSrtFunction func) {
if (max_i < 0)
return;
fromTill(0, max_i, a, func);
}
/** Captures arguments but delays the evaluation. */
default LSrtSupplier capture(byte a) {
return () -> this.applyAsSrt(a);
}
/** Creates function that always returns the same value. */
static LByteToSrtFunction constant(short 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 LByteToSrtFunction byteToSrtFunc(final @Nonnull LByteToSrtFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda;
}
@Nonnull
static LByteToSrtFunction recursive(final @Nonnull LFunction selfLambda) {
final LByteToSrtFunctionSingle single = new LByteToSrtFunctionSingle();
LByteToSrtFunction func = selfLambda.apply(single);
single.target = func;
return func;
}
final class LByteToSrtFunctionSingle implements LSingle, LByteToSrtFunction {
private LByteToSrtFunction target = null;
@Override
public short applyAsSrtX(byte a) throws Throwable {
return target.applyAsSrtX(a);
}
@Override
public LByteToSrtFunction value() {
return target;
}
}
@Nonnull
static LByteToSrtFunction byteToSrtFuncThrowing(final @Nonnull ExF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce();
};
}
@Nonnull
static LByteToSrtFunction byteToSrtFuncThrowing(final String message, final @Nonnull ExMF exF) {
Null.nonNullArg(exF, "exF");
return a -> {
throw exF.produce(message);
};
}
static short call(byte a, final @Nonnull LByteToSrtFunction lambda) {
Null.nonNullArg(lambda, "lambda");
return lambda.applyAsSrt(a);
}
//
//
//
/** Safe instance. That always returns the same value (as produceShort). */
@Nonnull
static LByteToSrtFunction safe() {
return LByteToSrtFunction::produceShort;
}
/** 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 LByteToSrtFunction safe(final @Nullable LByteToSrtFunction 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 LByteToSrtFunction compose(@Nonnull final LByteUnaryOperator before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsSrt(before.applyAsByte(v));
}
public static LByteToSrtFunction composed(@Nonnull final LByteUnaryOperator before, LByteToSrtFunction after) {
return after.compose(before);
}
/** Allows to manipulate the domain of the function. */
@Nonnull
default LToSrtFunction byteToSrtFuncCompose(@Nonnull final LToByteFunction super V> before) {
Null.nonNullArg(before, "before");
return v -> this.applyAsSrt(before.applyAsByte(v));
}
public static LToSrtFunction composed(@Nonnull final LToByteFunction super V> before, LByteToSrtFunction after) {
return after.byteToSrtFuncCompose(before);
}
//
//
/** Combines two functions together in a order. */
@Nonnull
default LByteFunction then(@Nonnull LSrtFunction extends V> after) {
Null.nonNullArg(after, "after");
return a -> after.apply(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteUnaryOperator thenToByte(@Nonnull LSrtToByteFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsByte(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToSrtFunction thenToSrt(@Nonnull LSrtUnaryOperator after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsSrt(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToIntFunction thenToInt(@Nonnull LSrtToIntFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsInt(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToLongFunction thenToLong(@Nonnull LSrtToLongFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsLong(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToFltFunction thenToFlt(@Nonnull LSrtToFltFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsFlt(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToDblFunction thenToDbl(@Nonnull LSrtToDblFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsDbl(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LByteToCharFunction thenToChar(@Nonnull LSrtToCharFunction after) {
Null.nonNullArg(after, "after");
return a -> after.applyAsChar(this.applyAsSrt(a));
}
/** Combines two functions together in a order. */
@Nonnull
default LBytePredicate thenToBool(@Nonnull LSrtPredicate after) {
Null.nonNullArg(after, "after");
return a -> after.test(this.applyAsSrt(a));
}
//
//
//
/** Does nothing (LByteToSrtFunction) Function */
public static short produceShort(byte a) {
return Function4U.defaultShort;
}
/**
* 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, LSrtConsumer consumer) {
int size = ia.size(source);
LOiToByteFunction oiFunc0 = (LOiToByteFunction) ia.getter();
int i = 0;
for (; i < size; i++) {
byte a = oiFunc0.applyAsByte(source, i);
consumer.accept(this.applyAsSrt(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, LSrtConsumer consumer) {
Object iterator0 = ((LFunction) sa.adapter()).apply(source);
LPredicate testFunc0 = (LPredicate) sa.tester();
LToByteFunction nextFunc0 = (LToByteFunction) sa.supplier();
while (testFunc0.test(iterator0)) {
byte a = nextFunc0.applyAsByte(iterator0);
consumer.accept(this.applyAsSrt(a));
}
}
}