com.koloboke.function
Interface ShortFunction<R>

Type Parameters:
R - the type of the result of the function

public interface ShortFunction<R>

Represents a function that accepts a short-valued argument and produces a result. This is the short-consuming primitive specialization for Function.

See Also:
Function

Method Summary
 R apply(short value)
          Applies this function to the given argument.
 

Method Detail

apply

R apply(short value)
Applies this function to the given argument.

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