GNU Trove

gnu.trove.function
Interface TIntFunction


public interface TIntFunction

Interface for functions that accept and return one int primitive.


Method Summary
 int execute(int value)
          Execute this function with value
 

Method Detail

execute

int execute(int value)
Execute this function with value

Parameters:
value - a int input
Returns:
a int result

GNU Trove