T - the type of the first argument to the functionU - the type of the second argument to the functionR - the type of the result of the function@FunctionalInterface public interface BiFunctionEx<T,U,R> extends BiFunction<T,U,R>, Serializable
Serializable variant of java.util.function.BiFunction which declares checked exception.| Modifier and Type | Method and Description | 
|---|---|
| default <V> BiFunctionEx<T,U,V> | andThen(FunctionEx<? super R,? extends V> after)Serializablevariant ofjava.util.function.BiFunction#andThen(Function). | 
| default R | apply(T t,
     U u) | 
| R | applyEx(T t,
       U u)Exception-declaring version of  BiFunction.apply(T, U). | 
andThenR applyEx(T t, U u) throws Exception
BiFunction.apply(T, U).Exception - in case of any exceptional casedefault <V> BiFunctionEx<T,U,V> andThen(FunctionEx<? super R,? extends V> after)
Serializable variant of java.util.function.BiFunction#andThen(Function).V - the type of output of the after function, and of the
           composed functionCopyright © 2020 Hazelcast, Inc.. All rights reserved.