R/after-day.R
, R/before-day.R
, R/between-day.R
, and 2 more
event-mday.Rd
on_mday()
: Is the date on the x
-th day of the month?
before_mday()
: Is the date before the x
-th day of the month?
after_mday()
: Is the date after the x
-th day of the month?
between_mdays()
: Is the date between the x
-th and y
-th days of
the month?
after_mday(x, inclusive = FALSE, start = TRUE) before_mday(x, inclusive = FALSE, start = TRUE) between_mdays(x, y, start = TRUE) on_mday(x, start = TRUE)
x |
A day of the month to mark as an event. For |
---|---|
inclusive |
Should |
start |
Should counting start from the beginning of the month? If |
y |
A day of the month to mark as an event. |