Uses of Interface
io.smallrye.mutiny.unchecked.UncheckedFunction
Packages that use UncheckedFunction
-
Uses of UncheckedFunction in io.smallrye.mutiny.unchecked
Methods in io.smallrye.mutiny.unchecked that return UncheckedFunctionModifier and TypeMethodDescriptiondefault <V> UncheckedFunction<T, V> UncheckedFunction.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.default <V> UncheckedFunction<V, R> UncheckedFunction.compose(UncheckedFunction<? super V, ? extends T> before) Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.static <T,R> UncheckedFunction <T, R> Creates aUncheckedBiConsumerfrom an existingFunctionstatic <T,R> UncheckedFunction <T, R> Transforms the given function into a version that can throw exceptions.Methods in io.smallrye.mutiny.unchecked with parameters of type UncheckedFunctionModifier 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.default <V> UncheckedFunction<T, V> UncheckedFunction.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.default <V> UncheckedFunction<V, R> UncheckedFunction.compose(UncheckedFunction<? super V, ? extends T> before) Returns a composed function that first applies thebeforefunction to its input, and then applies this function to the result.static <T,R> Function <T, R> Unchecked.function(UncheckedFunction<T, R> function) Transforms the given (unchecked) function into a regular function.