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