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