Why isn\'t the implementation of Math.max a variadic function?
It could get implemented like this:
public class Main { public static double max(d
Math.max() dates back to JDK 1.0, whereas variadic functions have not existed until Java 5.
Math.max()