@FunctionalInterface public interface ByteByteToByteFunction
byte
-valued arguments
and produces a byte
-valued result.
This is the (byte, byte, byte)
specialization of BiFunction
.
Unlike ByteBinaryOperator
, this function is supposed to accept heterogeneous
arguments, e. g. key and value
in ByteByteMap.compute(byte, ByteByteToByteFunction)
method.
BiFunction
Modifier and Type | Method and Description |
---|---|
byte |
applyAsByte(byte a,
byte b)
Applies this function to the given arguments.
|