pub fn find_first_date_on_or_after(
start_date: NaiveDate,
freq: DateFreq,
) -> Result<NaiveDate, Box<dyn Error>>
Expand description
Finds the first valid date according to the frequency,
starting the search on or after the given start_date
.