Document new period functions.

This commit is contained in:
Dominik Pantůček 2023-03-27 20:02:39 +02:00
parent 4c7bff7c5c
commit 63ab7fc18a

View file

@ -167,7 +167,21 @@ Returns a new valid month that comes ```n``` months after ```m```. If
### Period ### Period
This module implements simple calendar period handling with month This module implements simple calendar period handling with month
granularity. granularity. The period contains fields ```since``` which is the first
month of the period and ```before``` which is the first month just
after the period.
(period-since p)
* ```p``` - valid period
Returns the ```since``` part of given period.
(period-before p)
Returns the ```since``` part of given period.
Returns the ```before``` part of given period.
(period-markers->periods l) (period-markers->periods l)