Uses of Interface
org.apache.commons.lang3.Functions.FailableBiFunction
-
Packages that use Functions.FailableBiFunction Package Description org.apache.commons.lang3 Provides highly reusable static utility methods, chiefly concerned with adding value to thejava.lang
classes. -
-
Uses of Functions.FailableBiFunction in org.apache.commons.lang3
Methods in org.apache.commons.lang3 with parameters of type Functions.FailableBiFunction Modifier and Type Method Description static <O1,O2,O,T extends java.lang.Throwable>
OFunctions. apply(Functions.FailableBiFunction<O1,O2,O,T> function, O1 input1, O2 input2)
Deprecated.Applies a function and rethrows any exception as aRuntimeException
.static <O1,O2,O>
java.util.function.BiFunction<O1,O2,O>Functions. asBiFunction(Functions.FailableBiFunction<O1,O2,O,?> function)
Deprecated.Converts the givenFunctions.FailableBiFunction
into a standardBiFunction
.
-