Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_Time), | intent(in) | :: | time1 | |||
type(ESMF_Time), | intent(in) | :: | time2 |
function ESMF_TimeLT(time1, time2) ! ! !RETURN VALUE: logical :: ESMF_TimeLT ! ! !ARGUMENTS: type(ESMF_Time), intent(in) :: time1 type(ESMF_Time), intent(in) :: time2 ! ! !DESCRIPTION: ! This method overloads the (<) operator for the {\tt ESMF\_Time} class. ! See "interface operator(<)" above for complete description. ! !EOPI integer :: localrc ! Initialize output value in case of error ESMF_TimeLT = .false. ! check inputs ESMF_INIT_CHECK_SHALLOW(ESMF_TimeGetInit,time1,localrc) ESMF_INIT_CHECK_SHALLOW(ESMF_TimeGetInit,time2,localrc) ! invoke C to C++ entry point for ESMC_BaseTime base class function call c_ESMC_BaseTimeLT(time1, time2, ESMF_TimeLT) end function ESMF_TimeLT