| Class | Runt::EveryTE |
| In: |
lib/runt/temporalexpression.rb
|
| Parent: | Object |
Using the precision from the supplied start argument and the its date value, matches every n number of time units thereafter.
# File lib/runt/temporalexpression.rb, line 682 def initialize(start,n,precision=nil) @start=start @interval=n # Use the precision of the start date by default @precision=precision || @start.date_precision end