Go to the source code of this file.
Functions/Subroutines | |
| logical function | dcdatetime_gt_tt (time1, time2) |
| Functions for user defined operation (>) | |
| logical function | dcdatetime_gt_ff (diff1, diff2) |
| logical function | dcdatetime_gt_fi (diff, factor) |
| logical function | dcdatetime_gt_if (factor, diff) |
| logical function dcdatetime_gt_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 first argument is greater than the time difference stored in the second argument.
| [in] | diff1 | First time difference to compare |
| [in] | diff2 | Second time difference to compare |
Definition at line 99 of file dcdatetimegt.f90.
| logical function dcdatetime_gt_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 greater 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 dcdatetimegt.f90.
| logical function dcdatetime_gt_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 greater 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 dcdatetimegt.f90.
| logical function dcdatetime_gt_tt | ( | type(dc_datetime), intent(in) | time1, |
| type(dc_datetime), intent(in) | time2 | ||
| ) |
Functions for user defined operation (>)
Definition at line 47 of file dcdatetimegt.f90.