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