Go to the source code of this file.
Functions/Subroutines | |
| logical function | dcdatetime_ge_tt (time1, time2) |
| Functions for user defined operation (>=) | |
| logical function | dcdatetime_ge_ff (diff1, diff2) |
| logical function | dcdatetime_ge_fi (diff, factor) |
| logical function | dcdatetime_ge_if (factor, diff) |
| logical function dcdatetime_ge_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 or equal to 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 80 of file dcdatetimege.f90.
| logical function dcdatetime_ge_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 or equal to the integer stored in the second argument.
| [in] | diff | Time difference to compare |
| [in] | factor | Integer value to compare |
Definition at line 113 of file dcdatetimege.f90.
| logical function dcdatetime_ge_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 or equal to the time difference stored in the second argument.
| [in] | factor | Integer value to compare |
| [in] | diff | Time difference to compare |
Definition at line 147 of file dcdatetimege.f90.
| logical function dcdatetime_ge_tt | ( | type(dc_datetime), intent(in) | time1, |
| type(dc_datetime), intent(in) | time2 | ||
| ) |
Functions for user defined operation (>=)
Definition at line 47 of file dcdatetimege.f90.