Nodes of different colours represent the following:
Solid arrows point from a procedure to one which it calls. Dashed
arrows point from an interface to procedures which implement that interface.
This could include the module procedures in a generic interface or the
implementation in a submodule of an interface in a parent module.
Source Code
pure function chars(self)result(raw)!< Return the raw characters data.!<!<```fortran!< type(string) :: astring!< astring = 'say all Hello WorLD!'!< print '(L1)', astring%chars()=='say all Hello WorLD!'!<```!=> T <<<class(string),intent(in)::self!< The string.character(kind=CK,len=:),allocatable::raw!< Raw characters data.if(allocated(self%raw))thenraw=self%rawelseraw=''endif endfunction chars