diem.fa#

diem.fa(date: date) date#

Resolve the diem to the first date strictly after the given date.

Parameters:

date (datetime.date) –

Return type:

datetime.date

Examples

>>> diem(3, 31).fa(datetime.date(2020,2,14))
datetime.date(2020, 3, 31)
>>> diem(3, 31).fa(datetime.date(2020, 6, 1))
datetime.date(2021, 3, 31)

Note

If the diem is 29 Feb, the diem.fa will resolve based on the fold attribute (e.g. back to 28 Feb or forward to 29 Feb)