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 end, causing their month to increment.
std.datetime.date.DateTimeException if empty is true or if the resulting interval would be invalid.
auto interval1 = NegInfInterval!Date(Date(2012, 3, 1)); auto interval2 = NegInfInterval!Date(Date(2012, 3, 1)); interval1.expand(2); assert(interval1 == NegInfInterval!Date(Date(2014, 3, 1))); interval2.expand(-2); assert(interval2 == NegInfInterval!Date(Date(2010, 3, 1)));
Expands the interval forwards and/or backwards in time. Effectively, it adds the given number of months/years to end.