to_lower_string Function

private elemental function to_lower_string(string) result(lowercase_string)

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

Arguments

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

Return Value type(string_type)


Calls

proc~~to_lower_string~~CallsGraph proc~to_lower_string to_lower_string proc~maybe maybe proc~to_lower_string->proc~maybe to_lower_ to_lower_ proc~to_lower_string->to_lower_

Called by

proc~~to_lower_string~~CalledByGraph proc~to_lower_string to_lower_string interface~to_lower~2 to_lower interface~to_lower~2->proc~to_lower_string

Source Code

elemental function to_lower_string(string) result(lowercase_string)
   type(string_type), intent(in) :: string
   type(string_type) :: lowercase_string

   lowercase_string%raw = to_lower_(maybe(string))

end function to_lower_string