Interface ObjLongBiFunction<T,​R>

  • Type Parameters:
    T - the type of the first argument to the function
    R - the type of the result of the function
    All Superinterfaces:
    java.io.Serializable
    Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ObjLongBiFunction<T,​R>
    extends java.io.Serializable
    Represents a specialization of BiFunction where the second argument is a long.
    Since:
    Jet 3.0
    • Method Detail

      • applyEx

        R applyEx​(T t,
                  long u)
           throws java.lang.Exception
        Exception-declaring version of apply(T, long).
        Throws:
        java.lang.Exception
      • apply

        default R apply​(T t,
                        long u)
        Applies this function to the given arguments.
        Parameters:
        t - the first function argument
        u - the second function argument
        Returns:
        the function result