Interface IntBinaryOperator

All Superinterfaces:
BiFunction<Integer,Integer,Integer>, BinaryOperator<@NotNull Integer>, IntBinaryOperator
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface IntBinaryOperator extends BinaryOperator<@NotNull Integer>, IntBinaryOperator
Represents an operation on a single int operand that produces a int result. This is the primitive type specialization of UnaryOperator for int.
See Also: