com.koloboke.function
Interface ByteToIntFunction


public interface ByteToIntFunction

Represents a function that accepts a byte-valued argument and produces an int-valued result. This is the byte-to-int primitive specialization for Function.

See Also:
Function

Method Summary
 int applyAsInt(byte value)
          Applies this function to the given argument.
 

Method Detail

applyAsInt

int applyAsInt(byte value)
Applies this function to the given argument.

Parameters:
value - the function argument
Returns:
the function result