com.koloboke.function
Interface ObjByteToByteFunction<T>

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

public interface ObjByteToByteFunction<T>

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

See Also:
BiFunction

Method Summary
 byte applyAsByte(T a, byte b)
          Applies this function to the given arguments.
 

Method Detail

applyAsByte

byte applyAsByte(T a,
                 byte b)
Applies this function to the given arguments.

Parameters:
a - the first function argument
b - the second function argument
Returns:
the function result