Package org.apache.commons.functor
Interface BinaryProcedure<L,R>
- Type Parameters:
L- the left argument type.R- the right argument type.
- All Superinterfaces:
BinaryFunctor<L,,R> Functor
- All Known Implementing Classes:
BinaryFunctionBinaryProcedure,BinarySequence,ConditionalBinaryProcedure,IgnoreLeftProcedure,IgnoreRightProcedure,InPlaceTransform,NoOp,RemoveMatching,RetainMatching,TransformedBinaryProcedure,TransformedBinaryProcedure.Helper,TransposedProcedure
A functor that takes two arguments and has no return value.
Implementors are encouraged but not required to make their functors
Serializable.
- Since:
- 1.0
- Version:
- $Revision$ $Date$
-
Method Summary
-
Method Details
-
run
Execute this procedure.- Parameters:
left- the L element of the ordered pair of argumentsright- the R element of the ordered pair of arguments
-