1 ///////////////////////////////////////////
3 // Just an interface for specifying
4 // how to join two instances of a
5 // type. This is useful within a
6 // generic structure, like MultiViewMap.
8 ///////////////////////////////////////////
11 public interface JoinOp<T> {
13 ////////////////////////////////////////
15 // join() should accept null values for
18 ////////////////////////////////////////