Java Tuples
One oft-noted feature of the Java language is it’s lack of a tuple data type. This leads to an abundance of classes that provide the convenience of grouping more than one value into a single object. These classes usually look more or less like this: public class ObjectPair<A, B> { private A primary; private B [...]
