Uses of Interface
com.pivovarit.function.ThrowingBiFunction
-
Packages that use ThrowingBiFunction Package Description com.pivovarit.function Thecom.pivovarit.function
package contains checked equivalents of thejava.util.function
package -
-
Uses of ThrowingBiFunction in com.pivovarit.function
Subinterfaces of ThrowingBiFunction in com.pivovarit.function Modifier and Type Interface Description interface
ThrowingBinaryOperator<T,E extends java.lang.Exception>
Represents an operation upon two operands of the same type, producing a result of the same type as the operands.Methods in com.pivovarit.function that return ThrowingBiFunction Modifier and Type Method Description default <V> ThrowingBiFunction<T1,T2,V,E>
ThrowingBiFunction. andThen(ThrowingFunction<? super R,? extends V,? extends E> after)
Performs provided action on the result of this ThrowingBiFunction instancedefault ThrowingBiFunction<T,U,java.lang.Void,E>
ThrowingBiConsumer. asFunction()
Returns this ThrowingBiConsumer instance as a ThrowingBiFunctiondefault ThrowingBiFunction<T,U,java.lang.Boolean,E>
ThrowingBiPredicate. asFunction()
Methods in com.pivovarit.function with parameters of type ThrowingBiFunction Modifier and Type Method Description static <T1,T2,R>
java.util.function.BiFunction<T1,T2,java.util.Optional<R>>ThrowingBiFunction. lifted(ThrowingBiFunction<T1,T2,R,?> f)
static <T1,T2,R>
java.util.function.BiFunction<T1,T2,R>ThrowingBiFunction. sneaky(ThrowingBiFunction<? super T1,? super T2,? extends R,?> function)
static <T1,T2,R>
java.util.function.BiFunction<T1,T2,R>ThrowingBiFunction. unchecked(ThrowingBiFunction<T1,T2,R,?> function)
-