Category | Functions |
---|---|
Main types | Interval Direction |
Special intervals | everyDayOfWeek everyMonth everyDuration |
Special intervals | NegInfInterval PosInfInterval |
Underlying ranges | IntervalRange NegInfIntervalRange PosInfIntervalRange |
Flags | PopFirst |
Used to indicate whether popFront should be called immediately upon creating a range. The idea is that for some functions used to generate a range for an interval, front is not necessarily a time point which would ever be generated by the range (e.g. if the range were every Sunday within an interval, but the interval started on a Monday), so there needs to be a way to deal with that. To get the first time point in the range to match what the function generates, then use PopFirst.yes to indicate that the range should have popFront called on it before the range is returned so that front is a time point which the function would generate. To let the first time point not match the generator function, use PopFront.no.
Range-generating function.
Range-generating function.
Range-generating function.
Range-generating function.
Represents an interval of time.
A range over an Interval.
Represents an interval of time which has negative infinity as its starting point.
A range over a NegInfInterval. It is an infinite range.
Represents an interval of time which has positive infinity as its end point.
A range over a PosInfInterval. It is an infinite range.