JulianDate.LessThan Operator |
Returns true if left occurs before right.
Namespace:
AGI.Foundation.Time
Assembly:
AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 25.1.421.0 (25.1.421.0)
Syntaxpublic static bool operator <(
JulianDate left,
JulianDate right
)
Public Shared Operator < (
left As JulianDate,
right As JulianDate
) As Boolean
public:
static bool operator <(
JulianDate left,
JulianDate right
)
static let inline (<)
left : JulianDate *
right : JulianDate : bool
Parameters
- left
- Type: AGI.Foundation.Time.JulianDate
The date on the left side. - right
- Type: AGI.Foundation.Time.JulianDate
The date on the right side.
Return Value
Type:
Booleantrue if the
left is less than
right; otherwise
false.
See Also