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

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

See Also:
BiFunction

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

Method Detail

apply

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