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.
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
function make_child_name(collection_name,rc)result(child_name)character(len=:),allocatable::child_namecharacter(len=*),intent(in)::collection_nameinteger,optional,intent(out)::rcinteger::statusinteger::icharacter(*),parameter::ESCAPE='\' child_name = '' do i = 1, len(collection_name) associate (c => collection_name(i:i)) if (c == '.')thenchild_name=child_name//ESCAPEend ifchild_name=child_name//cend associate end do_RETURN(_SUCCESS)end function make_child_name