com.koloboke.function
Interface LongDoubleToDoubleFunction
public interface LongDoubleToDoubleFunction
Represents a function that accepts
a long
-valued and
a double
-valued argument
and produces a double
-valued result.
This is the (long, double, double)
specialization of BiFunction
.
- See Also:
BiFunction
Method Summary |
double |
applyAsDouble(long a,
double b)
Applies this function to the given arguments. |
applyAsDouble
double applyAsDouble(long a,
double b)
- Applies this function to the given arguments.
- Parameters:
a
- the first function argumentb
- the second function argument
- Returns:
- the function result