R/after-month.R
, R/before-month.R
, R/between-month.R
, and 2 more
event-ymonth.Rd
on_month()
/ on_ymonth()
: Is the date on month x
?
before_month()
/ before_ymonth()
: Is the date before month x
?
after_month()
/ after_ymonth()
: Is the date after month x
?
between_months()
/ between_ymonths()
: Is the date between months x
and y
?
after_month(x, inclusive = FALSE) after_ymonth(x, inclusive = FALSE) before_month(x, inclusive = FALSE) before_ymonth(x, inclusive = FALSE) between_months(x, y) between_ymonths(x, y) on_month(x) on_ymonth(x)
x |
A month of the year to mark as an event. For |
---|---|
inclusive |
Should |
y |
A month of the year to mark as an event. |
on_month()
is an alias of the less common, but more verbose, on_ymonth()
.