-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Needy edited this page May 30, 2018
·
2 revisions
Welcome to the JavaAdvancedMinMax wiki!
Improved Math.min and Math.max from the standard Java library. This class implements advanced min/max methods that allow an arbitrary number of arguments.
MinMax.min(1,2,-5,...,n);
MinMax.min(1.2,2.3,-5.0,...,n.n);
MinMax.max(1,2,-5,...,n);
MinMax.max(1.2,2.3,-5.0,...,n.n);