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