Package com.hazelcast.jet.core.function
Interface ObjLongBiFunction<T,R>
-
- Type Parameters:
T
- the type of the first argument to the functionR
- the type of the result of the function
- All Superinterfaces:
java.io.Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ObjLongBiFunction<T,R> extends java.io.Serializable
Represents a specialization ofBiFunction
where the second argument is along
.- Since:
- Jet 3.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default R
apply(T t, long u)
Applies this function to the given arguments.R
applyEx(T t, long u)
Exception-declaring version ofapply(T, long)
.
-
-
-
Method Detail
-
applyEx
R applyEx(T t, long u) throws java.lang.Exception
Exception-declaring version ofapply(T, long)
.- Throws:
java.lang.Exception
-
-