Create a datey_interval representing [start, end).
These are closed-open ('clopen') intervals start <= t < end, i.e. the
interval includes start but excludes end.
There are two syntaxes:
operator:
start %to% endfunction:
datey_interval(start, end)
These are equivalent other than strict is always on for the operator
version.
Arguments
- start, end
The start (inclusive) and end of the interval (exclusive). These can be any type that is convertible to a
datey. These have the same numbers of elements or their lengths must be multiples of each other.- strict
How NAs should be handled. If
strictisTRUE– the default – then execution is stopped. IfstrictisFALSEthenNAis returned ifstartand/orendis NA.
