public static class IndexedBiFunction.Util
extends java.lang.Object
| Modifier and Type | Method and Description |
|---|---|
static <T,U,R> IndexedBiFunction<T,U,R> |
wrap(BiFunction<? super T,? super U,? extends R> function)
Wraps
BiFunction and returns IndexedBiFunction. |
public static <T,U,R> IndexedBiFunction<T,U,R> wrap(@NotNull BiFunction<? super T,? super U,? extends R> function)
BiFunction and returns IndexedBiFunction.T - the type of the first argumentU - the type of the second argumentR - the type of the resultfunction - the BiFunction to wrapIndexedBiFunctionjava.lang.NullPointerException - if function is null