static <T,X extends Throwable> ThrowingToIntFunction<T,X> |
ThrowingToIntFunction.of(ThrowingToIntFunction<T,X> function) |
Factory method for turning ThrowingToIntFunction-shaped lambdas into ThrowingToIntFunctions.
|
default <E extends Throwable> ThrowingToIntFunction<T,E> |
ThrowingToIntFunction.onErrorApplyChecked(ThrowingToIntFunction<? super T,? extends E> fallback) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingDoubleToIntFunction<E> |
ThrowingDoubleToIntFunction.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingIntBinaryOperator<E> |
ThrowingIntBinaryOperator.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a binary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingIntSupplier<E> |
ThrowingIntSupplier.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a supplier that calls this supplier.
|
default <E extends Throwable> ThrowingIntUnaryOperator<E> |
ThrowingIntUnaryOperator.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a unary operator that applies this operator to its input.
|
default <E extends Throwable> ThrowingLongToIntFunction<E> |
ThrowingLongToIntFunction.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.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a function that applies this function to its input.
|
default <E extends Throwable> ThrowingToIntFunction<T,E> |
ThrowingToIntFunction.onErrorHandleChecked(ThrowingToIntFunction<? super X,? extends E> errorHandler) |
Returns a function that applies this function to its input.
|
static <T> ToIntFunction<T> |
ThrowingToIntFunction.unchecked(ThrowingToIntFunction<? super T,?> function) |
Returns a function that applies the function function to its input.
|