I
- the type of the first argument to the functionJ
- the type of the second argument to the functionT
- the type of Throwable thrownR
- the type of the result of the function@FunctionalInterface public interface ThrowingBiFunction<I,J,R,T extends Throwable>
ThrowingFunction
.
This is a functional interface
whose functional method is apply(Object, Object)
.
Modifier and Type | Method and Description |
---|---|
R |
apply(I in,
J i2)
Applies this function to the given arguments.
|
static <I,J,T extends Throwable,R> |
asBiFunction(ThrowingBiFunction<I,J,R,T> function) |
static <I,J,T extends Throwable,R> BiFunction<I,J,R> asBiFunction(@NotNull ThrowingBiFunction<I,J,R,T> function)
Copyright © 2020. All rights reserved.