to_title_string Function

private elemental function to_title_string(string) result(titlecase_string)

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

Arguments

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

Return Value type(string_type)


Calls

proc~~to_title_string~~CallsGraph proc~to_title_string to_title_string proc~maybe maybe proc~to_title_string->proc~maybe to_title_ to_title_ proc~to_title_string->to_title_

Called by

proc~~to_title_string~~CalledByGraph proc~to_title_string to_title_string interface~to_title~2 to_title interface~to_title~2->proc~to_title_string

Source Code

elemental function to_title_string(string) result(titlecase_string)
   type(string_type), intent(in) :: string
   type(string_type) :: titlecase_string

   titlecase_string%raw = to_title_(maybe(string))

end function to_title_string