Uses of Interface
com.pivovarit.function.ThrowingBiFunction
Packages that use ThrowingBiFunction
Package
Description
The
com.pivovarit.function package contains checked equivalents of the java.util.function package-
Uses of ThrowingBiFunction in com.pivovarit.function
Subinterfaces of ThrowingBiFunction in com.pivovarit.functionModifier and TypeInterfaceDescriptioninterfaceThrowingBinaryOperator<T,E extends 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 ThrowingBiFunctionModifier and TypeMethodDescriptiondefault <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, Void, E> ThrowingBiConsumer.asFunction()Returns this ThrowingBiConsumer instance as a ThrowingBiFunctiondefault ThrowingBiFunction<T, U, Boolean, E> ThrowingBiPredicate.asFunction()Methods in com.pivovarit.function with parameters of type ThrowingBiFunctionModifier and TypeMethodDescriptionstatic <T1,T2, R>
BiFunction<T1, T2, Optional<R>> ThrowingBiFunction.lifted(ThrowingBiFunction<T1, T2, R, ?> f) static <T1,T2, R>
BiFunction<T1, T2, R> ThrowingBiFunction.sneaky(ThrowingBiFunction<? super T1, ? super T2, ? extends R, ?> function) static <T1,T2, R>
BiFunction<T1, T2, R> ThrowingBiFunction.unchecked(ThrowingBiFunction<T1, T2, R, ?> function)