JulianDate Operators |
The JulianDate type exposes the following members.
| Name | Description | |
|---|---|---|
| Addition | ||
| Equality |
Returns true if two dates are exactly equal.
To be considered equal, Day and SecondsOfDay
must be identical when converted to a common time standard.
It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or
IsIdentical(JulianDate) instead of this method.
| |
| GreaterThan |
Returns true if left occurs after right.
| |
| GreaterThanOrEqual |
Returns true if left occurs after or at the same time as right.
| |
| Inequality |
Returns true if two dates are NOT exactly equal.
To be considered equal, Day and SecondsOfDay
must be identical when converted to a common time standard.
It is highly recommended that you use EqualsEpsilon(JulianDate, Double) or
IsIdentical(JulianDate) instead of this method.
| |
| LessThan |
Returns true if left occurs before right.
| |
| LessThanOrEqual |
Returns true if left occurs before or at the same time as right.
| |
| Subtraction(JulianDate, Duration) |
Subtracts a Duration from a Julian date, producing a new JulianDate.
| |
| Subtraction(JulianDate, JulianDate) |
Subtracts a Julian date from another Julian date, producing a Duration.
|