Whether the current year is a date in A.D.
assert(Date(1, 1, 1).isAD); assert(Date(2010, 12, 31).isAD); assert(!Date(0, 12, 31).isAD); assert(!Date(-2010, 1, 1).isAD);
See Implementation
Whether the current year is a date in A.D.