Interface ToIntTriFunctionTwoInts<F>

Type Parameters:
F - the type of the first argument to the function
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@PowerNukkitOnly @Since("1.4.0.0-PN") @FunctionalInterface public interface ToIntTriFunctionTwoInts<F>
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 Function.

This is a functional interface whose functional method is apply(Object, int, int).

Since:
1.4.0.0-PN
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns a composed function that first applies this function to its input, and then applies the after function to the result.
    int
    apply(F f, int s, int t)
    Applies this function to the given arguments.
  • Method Details

    • apply

      @PowerNukkitOnly @Since("1.4.0.0-PN") int apply(F f, int s, int t)
      Applies this function to the given arguments.
      Parameters:
      f - the first function argument
      s - the second function argument
      t - the third function argument
      Returns:
      the function result
    • andThen

      @PowerNukkitOnly @Since("1.4.0.0-PN") default ToIntTriFunctionTwoInts<F> andThen(IntUnaryOperator after)
      Returns a composed function that first applies this function to its input, and then applies the after function to the result. If evaluation of either function throws an exception, it is relayed to the caller of the composed function.
      Parameters:
      after - the function to apply after this function is applied
      Returns:
      a composed function that first applies this function and then applies the after function
      Throws:
      NullPointerException - if after is null