Interval.isBefore

Whether this interval is before the given interval and does not intersect with it.

  1. bool isBefore(TP timePoint)
  2. bool isBefore(Interval interval)
  3. bool isBefore(PosInfInterval!TP interval)
    struct Interval(TP)
    const pure
    bool
    isBefore
    (
    scope const PosInfInterval!TP interval
    )
  4. bool isBefore(NegInfInterval!TP interval)

Parameters

interval PosInfInterval!TP

The interval to check for against this interval.

Throws

std.datetime.date.DateTimeException if this interval is empty.

Examples

assert(!Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).isBefore(
            PosInfInterval!Date(Date(1999, 5, 4))));

assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).isBefore(
            PosInfInterval!Date(Date(2013, 3, 7))));

Meta