to_sentence_string Function

private elemental function to_sentence_string(string) result(sentence_string)

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

Arguments

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

Return Value type(string_type)


Calls

proc~~to_sentence_string~~CallsGraph proc~to_sentence_string to_sentence_string proc~maybe maybe proc~to_sentence_string->proc~maybe to_sentence_ to_sentence_ proc~to_sentence_string->to_sentence_

Called by

proc~~to_sentence_string~~CalledByGraph proc~to_sentence_string to_sentence_string interface~to_sentence~2 to_sentence interface~to_sentence~2->proc~to_sentence_string

Source Code

elemental function to_sentence_string(string) result(sentence_string)
   type(string_type), intent(in) :: string
   type(string_type) :: sentence_string

   sentence_string%raw = to_sentence_(maybe(string))

end function to_sentence_string