std.datetime.interval.Interval.isBefore  - multiple declarations
				Function Interval.isBefore
Whether this interval is before the given time point.
						
				bool isBefore
				(
				
				  scope const TP timePoint
				
				) const pure;
						
					
				Parameters
| Name | Description | 
|---|---|
| timePoint | The time point to check whether this interval is before it. | 
Throws
DateTimeException if this interval is
            empty.
Example
assert(!Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1))Function Interval.isBefore
Whether this interval is before the given interval and does not intersect with it.
						
					
				Parameters
| Name | Description | 
|---|---|
| interval | The interval to check for against this interval. | 
Throws
DateTimeException if either interval is
            empty.
Example
assert(!Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1))Function Interval.isBefore
Whether this interval is before the given interval and does not intersect with it.
						
					
				Parameters
| Name | Description | 
|---|---|
| interval | The interval to check for against this interval. | 
Throws
DateTimeException if this interval is
            empty.
Example
assert(!Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1))Function Interval.isBefore
Whether this interval is before the given interval and does not intersect with it.
						
					
				Always returns false (unless this interval is empty) because a finite interval can never be before an interval beginning at negative infinity.
Parameters
| Name | Description | 
|---|---|
| interval | The interval to check for against this interval. | 
Throws
DateTimeException if this interval is
            empty.
Example
assert(!Interval!Date(Date(1996, 1, 2), Date(2012, 3, 1))