com.koloboke.function
Interface FloatDoubleToDoubleFunction


public interface FloatDoubleToDoubleFunction

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

See Also:
BiFunction

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

Method Detail

applyAsDouble

double applyAsDouble(float a,
                     double b)
Applies this function to the given arguments.

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