-
I had the challenge of creating a date leniently from a day-of-month in the range 1-31 today. These two options work today:
```
day = Math.min(day, YearMonth.of(year, month).lengthOfMonth());
day = M…
-
The version 1.3 specification refines the semantics of UPC's shared array types. The issue is described here:
http://code.google.com/p/upc-specification/issues/detail?id=3
A test case, td2_arry.c is…
-
The `appendInstant()` method allows anything containing INSTANT_SECONDS to be formatted. However, there is no control over how the fraction of second is formatted.
Add a new method `appendInstant(int…