com.koloboke.function
Interface FloatFloatToFloatFunction

All Known Subinterfaces:
FloatBinaryOperator

public interface FloatFloatToFloatFunction

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

Unlike FloatBinaryOperator, this function is supposed to accept heterogeneous arguments, e. g. key and value in FloatFloatMap.compute(float, FloatFloatToFloatFunction) method.

See Also:
BiFunction

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

Method Detail

applyAsFloat

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

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