Interval.begin

The starting point of the interval. It is included in the interval.

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

Examples

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

Meta