Interface FragileBiFunction<T,​U,​R,​E extends java.lang.Throwable>

  • Type Parameters:
    T - the type of the first argument to the function
    U - the type of the second argument to the function
    R - the type of the result of the function
    E - the type of Throwable thrown by this FragileBiFunction
    All Known Subinterfaces:
    PerspectiveExpressionFactory
    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 FragileBiFunction<T,​U,​R,​E extends java.lang.Throwable>
    A BiFunction which can throw a Throwable
    See Also:
    BiFunction
    • Method Detail

      • apply

        R apply​(T t,
                U u)
         throws E extends java.lang.Throwable
        Applies this function to the given arguments.
        Parameters:
        t - the first function argument
        u - the second function argument
        Returns:
        the function result
        Throws:
        E - if there is some error or exception
        E extends java.lang.Throwable
        See Also:
        BiFunction.apply(Object, Object)