Uses of Interface
de.xima.fc.interfaces.IThrowingBiFunction
-
Packages that use IThrowingBiFunction Package Description de.xima.fc.interfaces de.xima.fc.utils Package für Utilsklassen -
-
Uses of IThrowingBiFunction in de.xima.fc.interfaces
Methods in de.xima.fc.interfaces that return IThrowingBiFunction Modifier and Type Method Description static <T,U,R>
IThrowingBiFunction<T,U,R>IThrowingBiFunction. of(IThrowingBiFunction<T,U,R> fn)
Returns the given bi-function, for improved variable inference.static <T,U,R>
IThrowingBiFunction<T,U,R>IThrowingBiFunction. throwingBiFunction(IThrowingBiFunction<T,U,R> fn)
Returns the given bi-function, for improved variable inference.Methods in de.xima.fc.interfaces with parameters of type IThrowingBiFunction Modifier and Type Method Description static <T,U,R>
IThrowingBiFunction<T,U,R>IThrowingBiFunction. of(IThrowingBiFunction<T,U,R> fn)
Returns the given bi-function, for improved variable inference.static <T,U,R>
IThrowingBiFunction<T,U,R>IThrowingBiFunction. throwingBiFunction(IThrowingBiFunction<T,U,R> fn)
Returns the given bi-function, for improved variable inference. -
Uses of IThrowingBiFunction in de.xima.fc.utils
Methods in de.xima.fc.utils with parameters of type IThrowingBiFunction Modifier and Type Method Description static <I1,I2,O>
BiFunction<I1,I2,O>XFunctionalUtils. catchingBiFunction(IThrowingBiFunction<I1,I2,O> fn)
Wraps a throwing bi-function into a bi-function that catches checked exceptions and rethrows them as runtime exceptions.
-