| Package | Description |
|---|---|
| io.smallrye.mutiny.unchecked |
| Modifier and Type | Method and Description |
|---|---|
default <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 the
after function to the result. |
static <T,U,R> UncheckedBiFunction<T,U,R> |
UncheckedBiFunction.from(BiFunction<T,U,R> function)
Creates a
UncheckedBiFunction from an existing BiFunction. |
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.
|
| Modifier and Type | Method and Description |
|---|---|
static <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.
|
Copyright © 2019–2020 SmallRye. All rights reserved.