Go to the source code of this file.
Functions/Subroutines | |
| logical function | dcdatetime_lt_tt (time1, time2) |
| Functions for user defined operation (<) | |
| logical function | dcdatetime_lt_ff (diff1, diff2) |
| logical function | dcdatetime_lt_fi (diff, factor) |
| logical function | dcdatetime_lt_if (factor, diff) |
| logical function dcdatetime_lt_ff | ( | type(dc_difftime), intent(in) | diff1, |
| type(dc_difftime), intent(in) | diff2 | ||
| ) |
Compare two DC_DIFFTIME variables (<)
Compare two time difference values. Returns .true. if the time difference stored in the second argument is greater than the time difference stored in the first argument.
| [in] | diff1 | First time difference to compare |
| [in] | diff2 | Second time difference to compare |
Definition at line 98 of file dcdatetimelt.f90.
| logical function dcdatetime_lt_fi | ( | type(dc_difftime), intent(in) | diff, |
| integer, intent(in) | factor | ||
| ) |
Compare DC_DIFFTIME with integer (<)
Compare a time difference value with an integer. Returns .true. if the time difference stored in the first argument is less than the integer stored in the second argument.
| [in] | diff | Time difference to compare |
| [in] | factor | Integer value to compare |
Definition at line 159 of file dcdatetimelt.f90.
| logical function dcdatetime_lt_if | ( | integer, intent(in) | factor, |
| type(dc_difftime), intent(in) | diff | ||
| ) |
Compare integer with DC_DIFFTIME (<)
Compare an integer with a time difference value. Returns .true. if the integer stored in the first argument is less than the time difference stored in the second argument.
| [in] | factor | Integer value to compare |
| [in] | diff | Time difference to compare |
Definition at line 193 of file dcdatetimelt.f90.
| logical function dcdatetime_lt_tt | ( | type(dc_datetime), intent(in) | time1, |
| type(dc_datetime), intent(in) | time2 | ||
| ) |
Functions for user defined operation (<)
Definition at line 47 of file dcdatetimelt.f90.