@FunctionalInterface public interface CheckedToIntBiFunction<T,U>
ToIntBiFunction that allows for checked exceptions.| Modifier and Type | Method and Description |
|---|---|
int |
applyAsInt(T t,
U u)
Applies this function to the given arguments.
|
static <T,U> java.util.function.ToIntBiFunction<T,U> |
unchecked(CheckedToIntBiFunction<T,U> function) |
static <T,U> java.util.function.ToIntBiFunction<T,U> |
unchecked(CheckedToIntBiFunction<T,U> function,
java.util.function.Consumer<Throwable> handler) |
int applyAsInt(T t, U u) throws Throwable
t - the first function argumentu - the second function argumentThrowablestatic <T,U> java.util.function.ToIntBiFunction<T,U> unchecked(CheckedToIntBiFunction<T,U> function)
Unchecked#toIntBiFunction(CheckedToIntBiFunction)}static <T,U> java.util.function.ToIntBiFunction<T,U> unchecked(CheckedToIntBiFunction<T,U> function, java.util.function.Consumer<Throwable> handler)
Unchecked#toIntBiFunction(CheckedToIntBiFunction, Consumer)}Copyright © 2016. All Rights Reserved.