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.
Where possible, edges connecting nodes are
given different colours to make them easier to distinguish in
large graphs.
Source Code
pure function undelimit(string,delimiter)result(undelimited)character(len=*),intent(in)::stringcharacter,intent(in)::delimitercharacter(len=len(string))::undelimitedinteger::iinteger::jundelimited=''j=0do i=1,len(string)if(string(i:i)==delimiter)cyclej=j+1undelimited(j:j)=string(i:i)end do end function undelimit