BinaryOperator<T> typedef

BinaryOperator<T> = BiFunction<T, T, T>

Represents an operation upon two operands of the same type, producing a result of the same type as the operands.

Implementation

typedef BinaryOperator<T> = BiFunction<T, T, T>;