Interface ToLongTriFunctionOneIntOneLong<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 ToLongTriFunctionOneIntOneLong<F>
Represents a function that accepts three arguments mixing F, int and long and produces a long result. This is the three-arity specialization of Function.

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

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.
    long
    apply(F f, int s, long t)
    Applies this function to the given arguments.
  • Method Details

    • apply

      @PowerNukkitOnly @Since("1.4.0.0-PN") long apply(F f, int s, long 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

      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