Format a long. Changes -10334 into -10,334 @param i the number @return the string representation of the number
(long i)
| 1004 | * @return the string representation of the number |
| 1005 | */ |
| 1006 | public static String f(long i) { |
| 1007 | instantiate(); |
| 1008 | return NF.format(i); |
| 1009 | } |
| 1010 | |
| 1011 | /** |
| 1012 | * Format a number. Changes -10334 into -10,334 |