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:
Serializable
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Represents a specialization of
BiFunction
where
the second argument is a long
.- Since:
- Jet 3.0
-
Method Summary
-
Method Details
-
applyEx
Exception-declaring version ofapply(T, long)
.- Throws:
Exception
-
apply
Applies this function to the given arguments.- Parameters:
t
- the first function argumentu
- the second function argument- Returns:
- the function result
-