com.koloboke.function
Interface FloatLongToLongFunction


public interface FloatLongToLongFunction

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

See Also:
BiFunction

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

Method Detail

applyAsLong

long applyAsLong(float a,
                 long b)
Applies this function to the given arguments.

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