com.koloboke.function
Interface ByteToLongFunction


public interface ByteToLongFunction

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

See Also:
Function

Method Summary
 long applyAsLong(byte value)
          Applies this function to the given argument.
 

Method Detail

applyAsLong

long applyAsLong(byte value)
Applies this function to the given argument.

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