com.koloboke.function
Interface IntObjFunction<T,R>

Type Parameters:
T - the type of the first argument to the function
R - the type of the result of the function

public interface IntObjFunction<T,R>

Represents a function that accepts an int-valued and an object-valued argument and returns a result. This is the (int, reference, reference) specialization of BiFunction.

See Also:
BiFunction

Method Summary
 R apply(int v, T t)
          Applies this function to the given arguments.
 

Method Detail

apply

R apply(int v,
        T t)
Applies this function to the given arguments.

Parameters:
v - the first function argument
t - the second function argument
Returns:
the function result