PosInfInterval.isBefore

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

Always returns false because an interval going to positive infinity can never be before any other interval.

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

Parameters

interval PosInfInterval

The interval to check for against this interval.

Examples

assert(!PosInfInterval!Date(Date(1996, 1, 2)).isBefore(
            PosInfInterval!Date(Date(1992, 5, 4))));

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

Meta