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