The number of years to expand the interval by.
The number of months to expand the interval by.
Whether the days should be allowed to overflow on begin, causing its month to increment.
std.datetime.date.DateTimeException if this interval is empty or if the resulting interval would be invalid.
auto interval1 = PosInfInterval!Date(Date(1996, 1, 2)); auto interval2 = PosInfInterval!Date(Date(1996, 1, 2)); interval1.expand(2); assert(interval1 == PosInfInterval!Date(Date(1994, 1, 2))); interval2.expand(-2); assert(interval2 == PosInfInterval!Date(Date(1998, 1, 2)));
Expands the interval forwards and/or backwards in time. Effectively, it subtracts the given number of months/years from begin.