static <T,U,X extends Throwable> ThrowingToIntBiFunction<T,U,X> |
ThrowingToIntBiFunction.checked(ToIntBiFunction<? super T,? super U> function) |
Returns a function that applies the function function to its input.
|
static <T,U,X extends Throwable> ThrowingToIntBiFunction<T,U,X> |
ThrowingToIntBiFunction.checked(ToIntBiFunction<? super T,? super U> function,
Class<X> errorType) |
Returns a function that applies the function function to its input.
|
static <T,U,X extends Throwable> ThrowingToIntBiFunction<T,U,X> |
ThrowingToIntBiFunction.of(ThrowingToIntBiFunction<T,U,X> function) |
Factory method for turning ThrowingToIntBiFunction-shaped lambdas into ThrowingToIntBiFunctions.
|
default <E extends Throwable> ThrowingToIntBiFunction<T,U,E> |
ThrowingToIntBiFunction.onErrorApplyChecked(ThrowingToIntBiFunction<? super T,? super U,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingToIntBiFunction<T,U,E> |
ThrowingToIntBiFunction.onErrorGetChecked(ThrowingIntSupplier<? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingToIntBiFunction<T,U,E> |
ThrowingToIntBiFunction.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingToIntBiFunction<T,U,E> |
ThrowingToIntBiFunction.onErrorThrowAsChecked(Function<? super X,? extends E> errorMapper) |
Returns a function that applies this function to its input.
|