Package eu.bandm.tools.util.function
Interface ByteUnaryOperator
- 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.2",
timestamp="2025-07-27T20:16:44")
@FunctionalInterface
public interface ByteUnaryOperator
Represents an operation on a single byte-valued operand that produces
a byte-valued result. This is the primitive type specialization of
UnaryOperator
for byte
.-
Method Summary
Modifier and TypeMethodDescriptionbyte
applyAsByte
(byte arg) Applies this operator to the given operand.
-
Method Details
-
applyAsByte
byte applyAsByte(byte arg) Applies this operator to the given operand.- Parameters:
arg
- the operand- Returns:
- the operator result
-