sch_seq() generates all events in a schedule from from to to, inclusive.

sch_seq(from, to, schedule)

Arguments

from, to

[Date(1)]

Dates defining the range to look for events in the schedule.

schedule

[schedule / event]

A schedule or event.

Examples

sch_seq("2019-01-01", "2019-01-31", on_mday(12) | on_wday("Mon"))
#> [1] "2019-01-07" "2019-01-12" "2019-01-14" "2019-01-21" "2019-01-28"