With Java 16 providing us with records as a standard feature we now have a way of creating tuples in Java. However, these are 'nominal' tuples - in other words the tuples need to be named. In some ...
This project demonstrates that the ultimate Java tuple is the Object array, i.e. Object[]. At the time of writing, tuples are supported up to 4. It's relatively easy to support tuples of 5, 6, and so ...