Uses of Interface
org.n52.janmayen.function.ThrowingBiFunction
-
Packages that use ThrowingBiFunction Package Description org.n52.janmayen.exception org.n52.janmayen.function -
-
Uses of ThrowingBiFunction in org.n52.janmayen.exception
Methods in org.n52.janmayen.exception with parameters of type ThrowingBiFunction Modifier and Type Method Description <T,U,R,X extends Exception>
Optional<R>CompositeException. apply(ThrowingBiFunction<T,U,R,X> function, T t, U u)<T,U,R,X extends Exception>
BiFunction<T,U,Optional<R>>CompositeException. wrapFunction(ThrowingBiFunction<T,U,R,X> function) -
Uses of ThrowingBiFunction in org.n52.janmayen.function
Methods in org.n52.janmayen.function that return ThrowingBiFunction Modifier and Type Method Description default <V> ThrowingBiFunction<T,U,V,X>ThrowingBiFunction. andThen(ThrowingFunction<? super R,? extends V,? extends X> after)Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.
-