Interval.end

The end point of the interval. It is excluded from the interval.

  1. TP end [@property getter]
    struct Interval(TP)
    @property const pure nothrow
    TP
    end
    ()
  2. TP end [@property setter]

Examples

assert(Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1)).end ==
       Date(2012, 3, 1));

Meta