Hi Akhil, At least for Integer.min/max you may want to use Math.min/max - these are jit intrinsics. I'd probably use the Math methods for all matching types (int, long, float, double) to cover the bases.
Thanks Sent from my phone On Nov 30, 2012 1:45 PM, "Akhil Arora" <[email protected]> wrote: > Hi > > Requesting review for some basic functionality related to lambdas - > > Add min, max, sum methods to the primitive wrapper classes - Byte, Short, > Integer, Long, Float, Double and Character so as to be able to use them as > reducers in lambda expressions. Add and, or, xor methods to Boolean. > > http://cr.openjdk.java.net/~**akhil/8004201.0/webrev/<http://cr.openjdk.java.net/~akhil/8004201.0/webrev/> > http://bugs.sun.com/**bugdatabase/view_bug.do?bug_**id=8004201<http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=8004201> > > Thanks >
