Interface CheckedBiFunction<T,U,R>

All Superinterfaces:
BiFunction<T,U,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 CheckedBiFunction<T,U,R> extends BiFunction<T,U,R>
A bi-function which wraps all exceptions in runtime exceptions so that expressions throwing checked exceptions can be nicely used in the Stream API
  • Method Summary

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

    Methods inherited from interface java.util.function.BiFunction

    andThen