Skip to content
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.

Usage

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);
Clone this wiki locally