qtDateTime
|
Public Member Functions | |
logical function | qtdt_f_datele (tDate1, tDate2) |
qtDT_F_DateLEChecks for a date being lower than another or equal to it. More... | |
logical function | qtdt_f_timele (tTime1, tTime2) |
qtDT_F_TimeLEChecks if a time value is lower than another or equal to it. More... | |
logical function qtdt_f_datele | ( | type (qtdt_t_date), intent(in) | tDate1, |
type (qtdt_t_date), intent(in) | tDate2 | ||
) |
Usage:
lRet = ( tDate1 <= tDate2 ) lRet = qtDT_F_DateLE( tDate1, tDate2 )
tDate1 | : date to be compared |
tDate2 | : date to be compared |
Compares if a date is lower (is older) than another or equal to the other one, and returns .TRUE. if so.
The function is used to overload the logical operators .LE. and <= .
logical function qtdt_f_timele | ( | type (qtdt_t_time), intent(in) | tTime1, |
type (qtdt_t_time), intent(in) | tTime2 | ||
) |
Usage:
lRet = ( tTime1 <= tTime2 ) lRet = qtDT_F_TimeLE( tTime1, tTime2 )
tTime1 | : time to be compared |
tTime2 | : time to be compared |
Compares if a time value is lower (earlier) than another or equal to it, and returns .TRUE. if so.
The function is used to overload the logical operators .LE. and <= .