Interface CheckedEolBiFunction<T,U,R>

Type Parameters:
T -
U -
R -
All Superinterfaces:
BiFunction<T,U,R>, CheckedBiFunction<T,U,R,EolRuntimeException>
All Known Subinterfaces:
CheckedEolBiConsumer<T,U>, CheckedEolBinaryOperator<T>, CheckedEolBiPredicate<T,U>
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 CheckedEolBiFunction<T,U,R> extends CheckedBiFunction<T,U,R,EolRuntimeException>
Since:
1.6
Author:
Sina Madani
  • Method Summary

    Modifier and Type
    Method
    Description
    default R
    apply(T t, U u)
     
    applyThrows(T t, U u)
     

    Methods inherited from interface java.util.function.BiFunction

    andThen