Exploring Java records by solving TSP
Java records are available since JDK 16. They represent a simplified and restricted variant of a Java class and form their public API on the arguments passed to their constructor. Let's explore their traits by writing a simple, yet fully functional library, for solving optimization problems and learn a few things along the way.
more ...