public interface BinaryFunction<T,R>
| Modifier and Type | Method and Description |
|---|---|
R |
perform(T left,
T right)
Has to be implemented to perform the actual operation.
|
R perform(T left, T right)
left - the left operand to be used in the operationright - the right operand to be used in the operation