cn.nukkit.utils.functional.ToIntTriFunctionTwoInts Maven / Gradle / Ivy
Show all versions of powernukkit Show documentation
package cn.nukkit.utils.functional;
import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;
import java.util.Objects;
import java.util.function.Function;
import java.util.function.IntUnaryOperator;
/**
* Represents a function that accepts three arguments where the last two are int and produces an int result.
* This is the three-arity specialization of {@link Function}.
*
* This is a functional interface
* whose functional method is {@link #apply(Object, int, int)}.
*
* @param the type of the first argument to the function
*
* @see Function
* @since 1.4.0.0-PN
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
@FunctionalInterface
public interface ToIntTriFunctionTwoInts {
/**
* Applies this function to the given arguments.
*
* @param f the first function argument
* @param s the second function argument
* @param t the third function argument
* @return the function result
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
int apply(F f, int s, int t);
/**
* Returns a composed function that first applies this function to
* its input, and then applies the {@code after} function to the result.
* If evaluation of either function throws an exception, it is relayed to
* the caller of the composed function.
*
* @param after the function to apply after this function is applied
* @return a composed function that first applies this function and then
* applies the {@code after} function
* @throws NullPointerException if after is null
*/
@PowerNukkitOnly
@Since("1.4.0.0-PN")
default ToIntTriFunctionTwoInts andThen(IntUnaryOperator after) {
Objects.requireNonNull(after);
return (F f, int s, int t) -> after.applyAsInt(apply(f, s, t));
}
}