com.koloboke.function
Interface LongObjFunction<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 LongObjFunction<T,R>

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

See Also:
BiFunction

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

Method Detail

apply

R apply(long 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