Interface ValueJoiner<V1,V2,R>
- 
- Type Parameters:
 V1- the type of the first valueV2- the type of the second valueR- the result type
- All Superinterfaces:
 Operation,Serializable
- All Known Implementing Classes:
 PairValueJoiner
public interface ValueJoiner<V1,V2,R> extends Operation
An interface for joining two values to produce a result. 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(V1 value1, V2 value2)Joins two values and produces a result. 
 -