Day of the year this Date is on.
assert(Date(1999, 1, 1).dayOfYear == 1); assert(Date(1999, 12, 31).dayOfYear == 365); assert(Date(2000, 12, 31).dayOfYear == 366);
See Implementation
Day of the year this Date is on.