static double toDays(long ms) { ret ms/(60000.0*60*24); } static double toDays(Duration d) { ret toDays(toMS(d)); }