Next returns the next time in the schedule relative to t.
(t time.Time)
| 175 | |
| 176 | // Next returns the next time in the schedule relative to t. |
| 177 | func (s Schedule) Next(t time.Time) time.Time { |
| 178 | return s.sched.Next(t) |
| 179 | } |
| 180 | |
| 181 | // IsWithinRange interprets a cron spec as a continuous time range, |
| 182 | // and returns whether the provided time value falls within that range. |
no test coverage detected