get_minute Function

public function get_minute(self)

Type Bound

ISO8601Time

Arguments

Type IntentOptional Attributes Name
class(ISO8601Time), intent(in) :: self

Return Value integer


Called by

proc~~get_minute~~CalledByGraph proc~get_minute ISO8601Time%get_minute proc~convert_iso8601_to_integer_time convert_ISO8601_to_integer_time proc~convert_iso8601_to_integer_time->proc~get_minute proc~get_minute_datetime ISO8601DateTime%get_minute_datetime proc~get_minute_datetime->proc~get_minute proc~test_construct_iso8601time test_construct_ISO8601Time proc~test_construct_iso8601time->proc~get_minute proc~test_iso8601time_getters test_ISO8601Time_getters proc~test_iso8601time_getters->proc~get_minute proc~convert_iso8601_to_esmf_time convert_ISO8601_to_esmf_time proc~convert_iso8601_to_esmf_time->proc~get_minute_datetime proc~test_construct_iso8601datetime test_construct_ISO8601DateTime proc~test_construct_iso8601datetime->proc~get_minute_datetime proc~test_convert_iso8601_to_integer_time test_convert_ISO8601_to_integer_time proc~test_convert_iso8601_to_integer_time->proc~convert_iso8601_to_integer_time proc~test_iso8601datetime_getters test_ISO8601DateTime_getters proc~test_iso8601datetime_getters->proc~get_minute_datetime

Source Code

   integer function get_minute(self)
      class(ISO8601Time), intent(in) :: self
      get_minute = self%minute_
   end function get_minute