# File lib/crono/interval.rb, line 32
    def next_within(time, period)
      begin
        time = period.since(time)
      end until within? TimeOfDay.parse(time)
      time
    end