Interface CheckedFunction2<T1,​T2,​R,​E extends java.lang.Throwable>

  • All Superinterfaces:
    java.util.function.BiFunction<T1,​T2,​R>
    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 CheckedFunction2<T1,​T2,​R,​E extends java.lang.Throwable>
    extends java.util.function.BiFunction<T1,​T2,​R>
    • Method Detail

      • checkedApply

        R checkedApply​(T1 t1,
                       T2 t2)
                throws E extends java.lang.Throwable
        Throws:
        E extends java.lang.Throwable
      • apply

        default R apply​(T1 t1,
                        T2 t2)
        Specified by:
        apply in interface java.util.function.BiFunction<T1,​T2,​R>