com.koloboke.function
Interface CharObjFunction<T,R>
- Type Parameters:
T - the type of the first argument to the functionR - the type of the result of the function
public interface CharObjFunction<T,R>
Represents a function that accepts a char-valued and an object-valued argument
and returns a result. This is the (char, reference, reference) specialization
of BiFunction.
- See Also:
BiFunction
|
Method Summary |
R |
apply(char v,
T t)
Applies this function to the given arguments. |
apply
R apply(char v,
T t)
- Applies this function to the given arguments.
- Parameters:
v - the first function argumentt - the second function argument
- Returns:
- the function result