set_ESMF_Time_from_ISO8601 Subroutine

public subroutine set_ESMF_Time_from_ISO8601(time, isostring, rc)

Arguments

Type IntentOptional Attributes Name
type(ESMF_Time), intent(inout) :: time
character(len=*), intent(in) :: isostring
integer, intent(out), optional :: rc

Calls

proc~~set_esmf_time_from_iso8601~~CallsGraph proc~set_esmf_time_from_iso8601 set_ESMF_Time_from_ISO8601 ESMF_TimeSet ESMF_TimeSet proc~set_esmf_time_from_iso8601->ESMF_TimeSet proc~mapl_return MAPL_Return proc~set_esmf_time_from_iso8601->proc~mapl_return proc~mapl_verify MAPL_Verify proc~set_esmf_time_from_iso8601->proc~mapl_verify at at proc~mapl_return->at insert insert proc~mapl_return->insert proc~mapl_throw_exception MAPL_throw_exception proc~mapl_return->proc~mapl_throw_exception proc~mapl_verify->proc~mapl_throw_exception

Called by

proc~~set_esmf_time_from_iso8601~~CalledByGraph proc~set_esmf_time_from_iso8601 set_ESMF_Time_from_ISO8601 proc~test_esmf_time_from_iso8601 test_ESMF_Time_from_ISO8601 proc~test_esmf_time_from_iso8601->proc~set_esmf_time_from_iso8601

Source Code

   subroutine set_ESMF_Time_from_ISO8601(time, isostring, rc)
       type(ESMF_Time), intent(inout) :: time
       character(len=*), intent(in) :: isostring
       integer, optional, intent(out) :: rc
       integer :: status

       call ESMF_TimeSet(time, isostring, _RC)

       _RETURN(_SUCCESS)

   end subroutine set_ESMF_Time_from_ISO8601