Uses of Interface
io.smallrye.mutiny.unchecked.UncheckedBiFunction
Packages that use UncheckedBiFunction
-
Uses of UncheckedBiFunction in io.smallrye.mutiny.unchecked
Methods in io.smallrye.mutiny.unchecked that return UncheckedBiFunctionModifier and TypeMethodDescriptiondefault <V> UncheckedBiFunction<T, U, V> UncheckedBiFunction.andThen(UncheckedFunction<? super R, ? extends V> after) Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.static <T,U, R> UncheckedBiFunction <T, U, R> UncheckedBiFunction.from(BiFunction<T, U, R> function) Creates aUncheckedBiFunctionfrom an existingBiFunction.static <T,U, R> UncheckedBiFunction <T, U, R> Unchecked.unchecked(BiFunction<T, U, R> function) Transforms the given bi-function into a version that can throw exceptions.Methods in io.smallrye.mutiny.unchecked with parameters of type UncheckedBiFunctionModifier and TypeMethodDescriptionstatic <T,U, R> BiFunction <T, U, R> Unchecked.function(UncheckedBiFunction<T, U, R> function) Transforms the given (unchecked) bi-function into a regular bi-function.