R/after-day.R
, R/before-day.R
, R/between-day.R
, and 2 more
event-wday.Rd
on_wday()
: Is the date on the x
-th day of the week?
on_weekends()
: Is the date on a weekend?
on_weekdays()
: Is the date on a weekday?
before_wday()
: Is the date before the x
-th day of the week?
after_wday()
: Is the date after the x
-th day of the week?
between_wdays()
: Is the date between the x
-th and y
-th days of
the week?
after_wday(x, inclusive = FALSE, start = TRUE) before_wday(x, inclusive = FALSE, start = TRUE) between_wdays(x, y, start = TRUE) on_wday(x, start = TRUE) on_weekends() on_weekdays()
x |
A day of the week to mark as an event. For |
---|---|
inclusive |
Should |
start |
Should counting start from the beginning of the week? If |
y |
A day of the week to mark as an event. This is also allowed to be a full
weekday string like |