Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
type(ESMF_TimeInterval), | intent(in) | :: | timeinterval | |||
integer(kind=ESMF_KIND_I4), | intent(in) | :: | divisor |
function ESMF_TimeIntervalQuotI(timeinterval, divisor) ! !RETURN VALUE: type(ESMF_TimeInterval) :: ESMF_TimeIntervalQuotI ! !ARGUMENTS: type(ESMF_TimeInterval), intent(in) :: timeinterval integer(ESMF_KIND_I4), intent(in) :: divisor ! !DESCRIPTION: ! This method overloads the (/) operator for the {\tt ESMF\_TimeInterval} ! class. See "interface operator(/)" above for complete description. ! !EOPI integer :: localrc ! check input ESMF_INIT_CHECK_SHALLOW_SHORT(ESMF_TimeIntervalGetInit,timeinterval,localrc) ! invoke C to C++ entry point call c_ESMC_TimeIntervalQuotI(timeinterval, divisor, & ESMF_TimeIntervalQuotI) ! mark output as successfully initialized call ESMF_TimeIntervalInit(ESMF_TimeIntervalQuotI) end function ESMF_TimeIntervalQuotI