com.koloboke.function
Interface ObjLongToLongFunction<T>
- Type Parameters:
T - the type of the first argument to the function
public interface ObjLongToLongFunction<T>
Represents a function that accepts
an object-valued and
a long-valued argument
and produces a long-valued result.
This is the (reference, long, long)
specialization of BiFunction.
- See Also:
BiFunction
|
Method Summary |
long |
applyAsLong(T a,
long b)
Applies this function to the given arguments. |
applyAsLong
long applyAsLong(T a,
long b)
- Applies this function to the given arguments.
- Parameters:
a - the first function argumentb - the second function argument
- Returns:
- the function result