Lines Matching refs:months
1007 Adds the given number of years or months to this $(LREF DateTime). A
1020 value = The number of months or years to add to this
1069 Adds the given number of years or months to this $(LREF DateTime). A
1073 affect larger units. Rolling a $(LREF DateTime) 12 months
1082 value = The number of months or years to add to this
2353 months requires some math using both the year and month properties, so
2354 this is a convenience function for getting the difference in months.
2356 Note that the number of days in the months or how far into the month
4307 Adds the given number of years or months to this $(LREF Date). A
4320 value = The number of months or years to add to this
4567 ref Date add(string units)(long months, AllowDayOverflow allowOverflow = AllowDayOverflow.yes)
4570 auto years = months / 12;
4571 months %= 12;
4572 auto newMonth = _month + months;
4574 if (months < 0)
5089 Adds the given number of years or months to this $(LREF Date). A negative
5093 affect larger units. Rolling a $(LREF Date) 12 months gets
5102 value = The number of months or years to add to this
5153 ref Date roll(string units)(long months, AllowDayOverflow allowOverflow = AllowDayOverflow.yes)
5156 months %= 12;
5157 auto newMonth = _month + months;
5159 if (months < 0)
6190 months requires some math using both the year and month properties, so
6191 this is a convenience function for getting the difference in months.
6193 Note that the number of days in the months or how far into the month
9385 Returns the number of months from the current months of the year to the
9390 month = The month of the year to get the number of months to.