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 (>).
This file contains implementation procedures of greater-than comparison for dc_date_types#DC_DATETIME and dc_date_types#DC_DIFFTIME.
Compare two DC_DATETIME variables (>)
Compare two datetime values. Returns .true. if the datetime stored in the first argument is later than the datetime stored in the second argument.
| [in] | time1 | First datetime to compare |
| [in] | time2 | Second datetime to compare |
Definition at line 47 of file dcdatetimegt.f90.