com.koloboke.function
Interface IntToCharFunction


public interface IntToCharFunction

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

See Also:
Function

Method Summary
 char applyAsChar(int value)
          Applies this function to the given argument.
 

Method Detail

applyAsChar

char applyAsChar(int value)
Applies this function to the given argument.

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