com.koloboke.function
Interface FloatToIntFunction


public interface FloatToIntFunction

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

See Also:
Function

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

Method Detail

applyAsInt

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

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