Uses of Interface
de.xima.fc.interfaces.IThrowingBiFunction
Packages that use IThrowingBiFunction
-
Uses of IThrowingBiFunction in de.xima.fc.interfaces
Subinterfaces of IThrowingBiFunction in de.xima.fc.interfacesModifier and TypeInterfaceDescriptioninterfaceABiFunctionthat is also serializable and can throw exceptions.Methods in de.xima.fc.interfaces that return IThrowingBiFunctionModifier and TypeMethodDescriptionstatic <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 IThrowingBiFunctionModifier and TypeMethodDescriptionstatic <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 IThrowingBiFunctionModifier and TypeMethodDescriptionstatic <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.