Package eu.bandm.tools.util.function
Interface ByteBinaryOperator
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@Generated(generator="eu.bandm.tools.expander",
version="1.3",
timestamp="2025-08-17T23:53:05")
@FunctionalInterface
public interface ByteBinaryOperator
Represents an operation on two byte-valued operands that produces a
byte-valued result. This is the primitive type specialization of
BinaryOperator
for byte
.-
Method Summary
Modifier and TypeMethodDescriptionbyte
applyAsByte
(byte left, byte right) Applies this operator to the given operands.
-
Method Details
-
applyAsByte
byte applyAsByte(byte left, byte right) Applies this operator to the given operands.- Parameters:
left
- the first operandright
- the second operand- Returns:
- the operator result
-