to_upper_string Function

private elemental function to_upper_string(string) result(uppercase_string)

Convert the character sequence hold by the input string to upper case

Arguments

Type IntentOptional Attributes Name
type(string_type), intent(in) :: string

Return Value type(string_type)


Calls

proc~~to_upper_string~~CallsGraph proc~to_upper_string to_upper_string proc~maybe maybe proc~to_upper_string->proc~maybe to_upper_ to_upper_ proc~to_upper_string->to_upper_

Called by

proc~~to_upper_string~~CalledByGraph proc~to_upper_string to_upper_string interface~to_upper~2 to_upper interface~to_upper~2->proc~to_upper_string

Source Code

elemental function to_upper_string(string) result(uppercase_string)
   type(string_type), intent(in) :: string
   type(string_type) :: uppercase_string

   uppercase_string%raw = to_upper_(maybe(string))

end function to_upper_string