char_string Function

private pure function char_string(string) result(character_string)

Return the character sequence represented by the string.

Arguments

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

Return Value character(len=slen)


Calls

proc~~char_string~~CallsGraph proc~char_string char_string proc~maybe maybe proc~char_string->proc~maybe

Called by

proc~~char_string~~CalledByGraph proc~char_string char_string interface~char char interface~char->proc~char_string

Source Code

pure function char_string(string) result(character_string)
   type(string_type), intent(in) :: string
   character(len=slen(string)) :: character_string

   character_string = maybe(string)

end function char_string