com.koloboke.function
Interface LongIntToIntFunction


public interface LongIntToIntFunction

Represents a function that accepts a long-valued and an int-valued argument and produces an int-valued result. This is the (long, int, int) specialization of BiFunction.

See Also:
BiFunction

Method Summary
 int applyAsInt(long a, int b)
          Applies this function to the given arguments.
 

Method Detail

applyAsInt

int applyAsInt(long a,
               int b)
Applies this function to the given arguments.

Parameters:
a - the first function argument
b - the second function argument
Returns:
the function result